div边框样式设置

Original 2019-03-14 18:33:43 335
abstract:div{ width: 400px; height: 350px; margin: 200px auto; background: linear-gradient(to bottom,rgb(255,85,45),rgb(23,62,129));/*背景渐变*/ border-radius: 10px;/*圆角*/ text-align: center; font-si


div{
width: 400px;
height: 350px;
margin: 200px auto;
background: linear-gradient(to bottom,rgb(255,85,45),rgb(23,62,129));/*背景渐变*/
border-radius: 10px;/*圆角*/
text-align: center;
font-size: 12px;
border: 1px dashed #000;/*边框虚线*/
box-shadow: 0px 6px 40px #ccc inset; /*内阴影*/
}


Correcting teacher:查无此人Correction time:2019-03-15 09:19:09
Teacher's summary:完成的不错。下次把代码缩进,看着整洁。继续加油

Release Notes

Popular Entries