当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > css 横排 实现代码

CSS样式表
第7天:CSS入门
第10天:自适应高度
VML的基本概念
Shape对象与VML坐标系
Line,Polyline(线)对象
Rect,RoundRect(矩形)对象
Group容器
ShapeType给VML制作模版
脚本动态生成VML
放大缩小VML
给VML增加事件
数据图表
文本修改留痕
VML应用实例大全
建立WEB两大经典!《VML极道教程》+FlashVml(闪耀之星)3.0中/英文版联合发布!
何为“VML”、VML的基底知识
VML网页文件的基本格式
vml简介
欢迎品尝用vml画的苹果~~
iframe 背景透明 实现方法

CSS样式表 中的 css 横排 实现代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 157 ::
收藏到网摘: n/a

效果预览:

image 
css:

代码如下:

<style type="text/css">
<!--
.table_tile{
text-align:left;
height: 20px;
width: 25%;
float: left;
}
.table_tile_{
text-align:right;
background-color:#0000FF;
height: 20px;
background-color:#999966;
width: 25%;
float: left;
}
.table_tile_bottom{
text-align:left;
background-color:#FFF000;
height: 20px;
width: 25%;
float: left;
}
-->
</style>

html:

代码如下:

<div class="table_tr">
<div class="table_tile">top0</div>
<div class="table_tile_">top1</div>
<div class="table_tile">top2</div>
<div class="table_tile">top3</div>
</div>
<div class="table_tr">
<div class="table_tile_bottom">bottom0</div>
<div class="table_tile_bottom">bottom1</div>
<div class="table_tile_bottom">bottom2</div>
<div class="table_tile_bottom">bottom3</div>
</div>

或者来个更简单的:

代码如下:

<style>
.float_left{
text-align:left;
height: 20px;
width: 25%;
float: left;
}
</style>
<div class = "float_left">asdasd</div>
<div class = "float_left">asdasd</div>
<div class = "float_left">why</div>