如何用css实现网页的布局
1个回答
展开全部
CSS英文全称:Cascading Style Sheets(层叠样式表)
是为了丰富网页布局的样式,在CSS没有出来之前,大家会用表格来进行分割布局,很不方便,CSS出来后就好多了。
我们平时所访问的都是服务器反馈到浏览器的HTML页面,但是正如上面说的,HTML无法满足新时代网站拥有者的表达需求,我们就会在HTML代码中加入适当的CSS代码来合理展现新的样式。
例如:
<html>
<head>
<title>测试页<title>
<style type="text/css">
.cs{width:100%;height:160px;text-align:center;line-height:160px;background:#f0f0f0;}
.csl{width:20%;height:160px;float:left;background:#fff;}
.csr{width:20%;height:160px;float:right;background:#fff;}
</style>
</head>
<body>
<div class="cs">
<div class="csl">
<p>左框内容</p>
</div>
<div class="csr">
<p>右框内容</p>
</div>
</div>
</body>
</html>
是为了丰富网页布局的样式,在CSS没有出来之前,大家会用表格来进行分割布局,很不方便,CSS出来后就好多了。
我们平时所访问的都是服务器反馈到浏览器的HTML页面,但是正如上面说的,HTML无法满足新时代网站拥有者的表达需求,我们就会在HTML代码中加入适当的CSS代码来合理展现新的样式。
例如:
<html>
<head>
<title>测试页<title>
<style type="text/css">
.cs{width:100%;height:160px;text-align:center;line-height:160px;background:#f0f0f0;}
.csl{width:20%;height:160px;float:left;background:#fff;}
.csr{width:20%;height:160px;float:right;background:#fff;}
</style>
</head>
<body>
<div class="cs">
<div class="csl">
<p>左框内容</p>
</div>
<div class="csr">
<p>右框内容</p>
</div>
</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询