因为测试需要用到css的内容,所以开始系统学习css和js技术
css有id选择器,类选择器,可以组合,也可以单独分布
首先是基本的选择器
h1{ color: rebeccapurple; } /*类样式 class=*/ .f20{ font-size: 18px; } /*id样式 id=,not copy*/ #p4{ font-size: 30px; /* 字体大小 */ font-weight: bolder; /* 字体加粗 */ background-color: pink; /*字体背景颜色*/ font-style: italic; /* 字体阴影*/ font-family: "Microsoft Yahei", "微软雅黑", "Pinghei"; } #p3{ font-size: 30px; /* 字体大小 */ font-weight: bolder; /* 字体加粗 */ background-color: pink; /*字体背景颜色*/ font-style: italic; /* 字体阴影*/ font-family: "Microsoft Yahei", "微软雅黑", "Pinghei"; } /*组合嵌入*/ div h1{ color: indianred; }
div的一种较为好看的布局
/*div 布局*/ #div1{ width: 400px; height: 400px; background-color: rgba(75, 81, 95, 0.3); display: flex; box-shadow: 7px 7px 17px rgba(52, 56, 66, 0.5);/*边框偏移量-X,-y,-阴影模糊半径,-阴影颜色*/ border-radius: 30px;/*边框圆滑程度*/ /*弹性布局 justify-content:flex在x上的偏移量 align-items:flex在y上的偏移量 */ display: flex; justify-content: center; align-items: center; }
标签:flex,color,HTML,字体,font,选择器,css From: https://www.cnblogs.com/copyjames/p/17321536.html