This is the Sweden Flag using CSS. Here are the steps on how it's done:
HTML | CSS |
---|---|
<div id="flag_main"></div> | #flag_main { position: relative; }
color: rgb(0,85,155); width: 800px; height: 500px; |
HTML | CSS |
---|---|
<div id="flag_horizontal"></div> | #flag_horizontal { position: absolute; }
color: rgb(255,206,0); width: 800px; height: 100px; bottom: 200px; left: 0px; |
HTML | CSS |
---|---|
<div id="flag_vertical"></div> | #flag_vertical { position: absolute; }
left: 200px; width: 100px; height: 500px; background-color: rgb(255,206,0); |
Thank you for listening to my presentation! :)