AlisaClass 2020-05-17
h1{ font-family:楷体; }
h1{ color:red; }
h1{ font-size:50xp; }
h1{ font-weight:bolder; }
<span></span>
无特殊功能,但通常用于注重标出.
h1{ color: blue; }
设定字体颜色
h1{ color: rgb(0,255,255); }
通过rgb设定字体颜色比例,从前往后依次是红,绿,蓝.
h1{ color: rgba(255,0,255,0.2); }
相对于rgb增加了a透明度.
h1{ text-align: center; }
h1{ text-indent: 2em; }
p{ line-height: 50px; }
line-height=hight即可达到行高居中的效果.
p{ text-decoration: underline; }
p{ text-decoration: line-through; }
h1{ text-decoration: overline; }
a{ text-decoration: none; }
img,span{ vertical-align: middle; }
a:hover{ color: blueviolet; }
a:active{ color: azure; }
a:visited{ color: red; }
ul li{ list-style: none; }
ul li{ list-style: circle; }
改实心圆为空心圆,还可以改其他样式.
background: url("../resources/image/Q (1).bmp");
background-repeat: repeat;
background-repeat: no-repeat;
background-repeat: repeat-x;
background-repeat: repeat-y;
background-position: 150px 2px;
background-image: linear-gradient(to bottom right red yellow);
从左上角到右下角的线性渐变.
border: 1px solid red;
边框宽度1px,实线,边框颜色为红色.
margin:外边距 border:边框 padding:内边距
margin(padding):上宽度 右宽度 下宽度 左宽度;(顺时针)
margin(padding): 0(上下为0) 0(左右为0,auto为居中);
margin: 1px 10px 20px 30px;
margin: 0 auto;
border:粗细 样式 颜色;
border: 1px solid aquamarine;
solid:实线 dashed:虚线
border-radius:左上 右上 左下 右下;(顺时针)
border-radius: 10px(左上右下) 20px(右上左下);(10px相当于圆角半径10px)
box-shadow: 向下偏移值 向右偏移值 模糊半径 颜色;
box-shadow: 10px 20px 5px yellow;
以上内容学习自【狂神说Java】CSS3最新教程快速入门通俗易懂
2020-5-17