用过的关于css的知识

1.代码片段

让两个div并排起来显示。

<div style="width:1000px; text-align:center;" id="content">
  <div style="width:300px; height:200px; float:left; background-color:#FF0000;" id="con_left"></div>
  <div style="width:700px; height:200px; float:left; background-color:#CCCCCC;" id="con_right"></div>
</div>

 让ul下的li并排显示

.box ul {
list-style-type: none;
margin:0px;
padding:0px;
}
.box li {
margin:7px;
padding:5px;
float:left;
width:150px;
height:190px;
}
追问

2.

字体:

 

posted on 2013-12-04 11:19  biggest fish  阅读(130)  评论(0编辑  收藏  举报

导航