Social Icons

Pages

Tuesday, November 29, 2016

CSS Positioning 14/25

To the left!
Good! As you saw, your div moved over to the right side of the page.


Instructions
Move it back by changing your div'sfloat from right to left!

div {
 height: 300px;
 width: 100px;
 border: 2px solid black;
 border-radius: 5px;
 background-color: #308014;
 float:left;
 
}

<!DOCTYPE html>
<html>
 <head>
  <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
  <title>Result</title>
 </head>
 <body>
  <div></div>
 </body>

</html>

No comments:

Post a Comment