盒子模型
Posted chenchen-12
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了盒子模型相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <title>盒子模型</title> <style type="text/css" media="screen" id="test"> div{ width:300px; height:300px; border: 1px solid #999; border-top-color:red; border-bottom-color:yellow; /*水平对齐方式*/ text-align:center; /*字体大小*/ font-size:50px; /*内边距的大小*/ padding-top: 100px; /*外边距的大小*/ margin-top:200px; } .test1{ background-color:red; /*浮动*/ float:left; } .test2{ font-style:italic; float:left; } .test3{ background-color: rgb(255,0,0); font-weight:800; float:right; } </style> </head> <body> <div id="test" class="test1"> 这是div1 </div> <div id="test" class="test2"> 这是div2 </div> <div id="testf" class="test3"> 这是div3 </div> </body> </html>
以上是关于盒子模型的主要内容,如果未能解决你的问题,请参考以下文章
初学css盒子模型,对于盒子的使用不是很明白,请问这样的盒子布局怎么写?
CSS课程网站 Banner 制作 ② ( Banner 栏版心盒子测量 | Banner 版心盒子模型左侧导航栏代码示例 )