码迷,mamicode.com
首页 > Web开发 > 详细

CSS属性

时间:2020-10-21 20:40:08      阅读:31      评论:0      收藏:0      [点我收藏+]

标签:utf-8   har   html   col   大小   color   htm   oat   控制   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS</title>
<style>
p{
color: red;
font-size: 30px;
line-height: 200px;
text-align: center;
border:1px solid red ;

}
div{
border:1px solid red ;
width: 500px;
height: 500px;
text-align: center;
background: center red url("林清学院PS素材/林清学院PS素材/咖啡豆.jpg") no-repeat ;
}
div1{

}
</style>
</head>
<body>
CSS 属性
<!--1 字体
font-size 改变字体大小;
color 字体颜色;
text-aline 对齐方式;
line height 行高;-->
<!--2:设置边框-->
3 尺寸
width heigth 设置宽和高;
4:背景;
background
5:盒子模型 控制布局
内外边距
Float 浮动:可以调整位置;
<p>
胡澳宾
</p>
<div align="center"></div>
<div class="div1">
<div class="div2">

</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
border:1px solid red ;
line-height: 30px;
width: 100px;
}
.div1{
width: 200px;
height: 200px;
padding:50px; /*设置内边距 但是会影响盒子的大小 ,通过box-sizing 控制盒子大小*/
box-sizing: border-box;
}
.div2{
width: 100px;
height: 100px;
margin: 50px; /*设置外边距;*/
}
.div3{
float: left;
}
.div4{
float: left;
}
.div5{
float: left;
}
</style>

</head>
<body>
<div class="div1">
<div class="div2">
</div>
</div>
<div class="div3">3333</div>
<div class="div4">4444</div>
<div class="div5">5555</div>
</body>
</html>

CSS属性

标签:utf-8   har   html   col   大小   color   htm   oat   控制   

原文地址:https://www.cnblogs.com/huaobin/p/13850006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!