CSS_属性1
属性
1.字体、文本
font- size :字体大小
color:文本颜色
line - height:设置行高
text-align:文本对齐方式
2.背景
background:
3.边框
border:设置边框,符合属性
4.尺寸
width:宽度
height:高度
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>字体属性</title> <!--字体属性--> <style> p{ /*字体大小*/ font-size: 30px; /*字体颜色*/ color: rebeccapurple; /*设置行高*/ line-height: 200px; /*文本对齐方式*/ text-align: center; /* border 边框 border:设置边框,符合属性 */ border: 1px red solid; } div{ /* 尺寸 width:宽度 height:高度 */ border: 1px darkred solid; width: 200px; height: 150px; /*设置背景图片*/ background: url("img/regbtn.jpg") no-repeat center; } </style> </head> <body> <p>萤火之光怎敢与皓月争辉</p> <div>王耀</div> </body> </html>
CSS_属性2_盒子模型
盒子模型:控制布局
margin:外边距
padding:内边距
默认情况下
标签:盒子,height,width,边框,border,CSS,属性 From: https://www.cnblogs.com/x3449/p/16896538.html