|
空格符
div {
background-color: rgba(19, 25, 47, 0.6); // 背景颜色
border: 1rpx solid #F00; // 边框
width: 49%; // 宽度
height: 245px; // 高度
border-radius: 6px; // 圆角
margin-left: 5px; // 左边距
margin-right: 8px; // 右边距
margin-top: 5px; // 上边距
margin-bottom
float:left; // 浮动靠左
float:right; // 浮动靠右
display: flex; // 不换行
text-align: center; /*文字水平居中对齐*/
line-height: 200px; // 文字行距
grid-template-columns: 3fr 4fr 5fr 3fr; // 分成四格,四格的大小
grid-template-columns: repeat(2, 50%); // 分成两格,各占50%
overflow:auto; // 溢出滚动条
}
文字{
text-align: center; /* 文字居中 */
font-size:20px; /* 文字大小 */
font-weight:bold; /* 文字加粗 */
line-height:40px; /* 行高间距 */
color: rgb(0, 0, 0); /* 文字颜色 */
}
|
|