ul{
width: 150px;
background: #d9d9d9;
}
ul li{
color: #333;
font-size: 14px;
}
ul li:nth-child(3){font-size: 30px;}
ul li{
float: left;
position: relative;
}
ul li:before{
content: "";
position: absolute;
left: -10px;
top: 7px;
width: 2px;
height: 10px;
background: #f11883;
} /* 각각의 li 왼쪽에 선을 그림 */
ul li a{padding: 10px;}
ul li:first-child:before{display: none;} /* 첫번째 요소의 before를 삭제함 */
ul li:first-child a{padding-left: 0;}
/* 첫번째 li안의 a에 왼쪽 여백을 삭제함, 이때 li가 first-child임. a:first-child 아님!!!!!!!!!! */
ul li{
float: left;
width: 300px;
margin-right: 50px;
} /* 모든 li에 오른쪽 여백을 줌 */
ul li:last-child{margin-right: 0;} /* 마지막 li만 오른쪽 여백 삭제 */
ul li{
float: left;
width: 100px;
height: 50px;
color: #fff;
text-align: center;
}
ul li:nth-child(1){background:#082559;} /* first-child라고 해도 됨 */
ul li:nth-child(2){background:#4475cb;}
ul li:nth-child(3){background:#31a2ac;}