三列布局

<HTML>
<HEAD>
<TITLE>DIV布局测试</TITLE>
<style type="text/css">

div
{
height:150px;
}
div.left
{
width:20%;
float:left;
clear:right;
background-color:#eeeeee;
   }

div.center
{
width:50%;
float:left;
clear:right;
background-color:#CCCCCC;
   }

  div.right
{
width:30%;
float:left;
clear:right;
background-color:#808080;
}
div.both
{
width:100%;
clear:both;
background-color:#696969; 
   }


</style>
</HEAD>

<BODY>
<div class="left">左侧</div>
<div class="center">中侧</div>
<div class="right">右侧</div>

<div class="both">全行</div>

<div class="left">左侧</div>
<div class="center">中侧</div>
<div class="right">右侧</div>
</BODY>
</HTML>

在使用.net的服务器控件时,比如textbox,采用div+css会出现布局出问题。可能是服务器控件内容原因造成的,可在textbox的标签加上<font></font>可正常。不知道为什么 。且在firefox中,直接对服务器控件的height进行设置(不能过css),在firefox中不起作用。

你可能感兴趣的:(.net,css,firefox)