This file contains hidden or 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
| <style type="text/css" media="screen"> | |
| * { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| .elem { | |
| border: solid #6AC5AC 3px; | |
| position: relative; |
This file contains hidden or 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
| <style type="text/css" media="screen"> | |
| * { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| .elem { | |
| border: solid #6AC5AC 3px; | |
| position: relative; |
This file contains hidden or 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
| <style type="text/css" media="screen"> | |
| * { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| .elem { | |
| border: solid #6AC5AC 3px; | |
| position: relative; |
This file contains hidden or 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
| <nav> | |
| <ul> | |
| <li data-section="about-me"> | |
| <a href="#" class="item"> About me </a> | |
| <ul class="dropdown"> | |
| <li><a href="#" class="item">Early years</a></li> | |
| <li><a href="#" class="item">First works</a></li> | |
| <li><a href="#" class="item">Today and tomorrow</a></li> | |
| </li> | |
| </ul> |
This file contains hidden or 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
| <nav> | |
| <ul> | |
| <li data-section="about-me"> | |
| <a href="#" class="item"> About me </a> | |
| <ul class="dropdown"> | |
| <li><a href="#" class="item">Early years</a></li> | |
| <li><a href="#" class="item">First works</a></li> | |
| <li><a href="#" class="item">Today and tomorrow</a></li> | |
| </li> | |
| </ul> |
This file contains hidden or 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
| <nav> | |
| <ul> | |
| <li data-section="about-me"> | |
| <a href="#" class="item"> About me </a> | |
| <ul class="dropdown"> | |
| <li><a href="#" class="item">Early years</a></li> | |
| <li><a href="#" class="item">First works</a></li> | |
| <li><a href="#" class="item">Today and tomorrow</a></li> | |
| </li> | |
| </ul> |
This file contains hidden or 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
| html{ | |
| height: 100%; | |
| } | |
| body{ | |
| background-image: repeating-linear-gradient(315deg, #ddd, #ddd, 40px, #aaa 40px, #aaa 80px); | |
| padding: 20px; | |
| height: 100%; | |
| } | |
| nav{ | |
| margin: 0 auto; |
This file contains hidden or 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
| html{ | |
| height: 100%; | |
| } | |
| body{ | |
| background-image: repeating-linear-gradient(315deg, #ddd, #ddd, 40px, #aaa 40px, #aaa 80px); | |
| padding: 20px; | |
| height: 100%; | |
| } | |
| nav{ | |
| margin: 0 auto; |
This file contains hidden or 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
| /* | |
| Positioning exercises | |
| */ | |
| .container { | |
| border: teal; | |
| } | |
| .box { | |
| color: white; |
This file contains hidden or 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
| .container { | |
| position: relative; | |
| left: 100px; | |
| margin: 200px auto; | |
| width: 500px; | |
| height: 500px; | |
| } | |
| .circle { | |
| position: absolute; |