less伪类(更多)css

.wrap {
color : blue;
width : 600px;
height : 500px;
border:groove;
border-radius: 15px;
.header {
border:groove;
width : 90%;
a {/*伪类*/
color: red;
font-size: 15px;
text-decoration: none;
float: right;
&:hover {
color: blue;
text-decoration: underline;
}
}
}
.content {
border:groove;
height : 300px;
width : 90%;
.left {
border:groove;
float : left;
width : 40%;
}
.right {
border:groove;
float : left;
width : 40%;
}
}
}

原文地址:https://www.cnblogs.com/u1107562/p/6513536.html