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
.parent { | |
position: relative; | |
width: 500px; | |
height: 500px; | |
background-color: grey; | |
} | |
.child { | |
position: absolute; | |
top: 50px; |
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
body { | |
padding: 2em; | |
} | |
.wrapper { | |
display: flex; | |
/* | |
flex-direction: row; | |
flex-wrap: wrop; | |
*/ |
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
body { | |
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | |
} | |
h3 { | |
color: #999999; | |
} | |
h3 em { | |
color: black; |
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 { | |
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | |
} | |
table { | |
border-collapse: collapse; | |
border: 2px solid rgb(200,200,200); | |
letter-spacing: 1px; | |
font-size: 0.8rem; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<!-- | |
Table Header: | |
Purchase, Location, Date, Evaluation, cost($) | |
Table Footer: | |
Sum | |
--> | |
<h1>Table Demo</h1> | |
<table border="1"> | |
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
body { | |
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | |
background: white; | |
color: #333; | |
font-size: 16px; | |
line-height: 1.2; | |
} | |
h1 { | |
text-align: center; |
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
<!-- content to be placed inside <body>…</body> --> | |
<!-- | |
form > fieldset > legend > div > label > input | |
Personal Detail | |
Email, Password, Name, Tel, Gender, Story | |
Address | |
Street, city, country | |
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 { | |
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | |
} | |
table { | |
border-collapse: collapse; | |
border: 2px solid rgb(200,200,200); | |
letter-spacing: 1px; | |
font-size: 0.8rem; | |
} |
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
body { | |
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | |
background: white; | |
color: #333; | |
font-size: 16px; | |
line-height: 1.2; | |
} | |
h1 { | |
text-align: center; |