A Pen by glenda drew on CodePen.
Created
January 26, 2016 23:42
-
-
Save spencermathews/0bdb5ebcea3c42d74256 to your computer and use it in GitHub Desktop.
css float and validation start
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<h2>col1</h2></section> | |
<section> | |
<h2>col2</h2></section> | |
<footer> | |
<!--add validation for html5 and css3; find the code in ex 1, 2, 3 r 4 instructions; add target="_blank" in the link <a> tag so that the browers opens a new page with the validation results--> | |
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0px; | |
padding: 0px; | |
} | |
body { | |
font-family:Verdana; | |
} | |
section:first-child { | |
float: left; | |
width: 300px; | |
height: 500px; | |
background-color: red; | |
} | |
section:nth-child(2) { | |
float: left; | |
width: 300px; | |
height: 500px; | |
background-color: purple; | |
margin-left: 24px; | |
} | |
footer { | |
clear: left; | |
width: 100%; | |
height: 72px; | |
background-color: magenta; | |
text-align: center; | |
} | |
footer a { | |
position:relative; | |
top:20px; | |
text-decoration: none; | |
color: white; | |
font-size: 24px; | |
padding: 20px; | |
} | |
footer a:hover{ | |
background-color:#333; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment