꿈틀이
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src ="../js/jquery-3.2.1.js"></script>
</head>
<script>
$(function(){
$('li').css('display','inline')
.css('float','left')
.css('width','100px')
.css('height','60px')
.css('text-align','center')
.css('line-height','60px');
$('li:nth-child(2n+1)').css('background','hotpink');
$('li:nth-child(2n)').css('background','orange');
$('li:nth-child(1)').css('border-top-left-radius','8px')
.css('border-bottom-left-radius','8px');
$('li:nth-child(7)').css('border-top-right-radius','8px')
.css('border-bottom-right-radius','8px');
});
</script>
<body>
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
<li>Fifth</li>
<li>Sixth</li>
<li>Seventh</li>
</ul>
<p>꿈툴이입니다.</p>
</body>
</html>