3-Add the Right Eye
Do A Lot of the Same Thing
<body>
<div class="wrapper">
<h1>CSS Smiley Face</h1>
<div class="face">
<div class="lefteye">
<div id="inner-left"></div>
</div>
<!-- Add new code here -->
<div class="righteye">
<div id="inner-right"></div>
</div>
</div>
</div>
</body>.righteye {
width: 6px;
height: 6px;
border: solid 1px black;
border-radius: 3px;
z-index: 1;
position: relative;
left: 54px;
top: 18px;
background-color: black;
}Now, Let's Add Another Pupil!
Great! Now We Have Our Eyes!
Last updated