Norwegian Flag v1

Norwegian flag using html and css, including annoying percentages.

by austegard

HTML

<div id="flag">
    <div id="tl"></div>
    <div id="tm"></div>
    <div id="tr"></div>
    <div id="mm"></div>
    <div id="bl"></div>
    <div id="br"></div>
</div>

CSS

#flag {position:relative; top: 0; left: 0; width: 687.5px; height: 500px;} 
#flag div {position: absolute; margin: 0px; padding: 0px;}
#tl, #tr, #bl, #br {background-color: #EF2B2D; height: 37.5%;}
#tm, #mm {background-color: #002868}
#tl, #tm, #tr {top: 0}
#bl, #br {bottom: 0}
#tl, #bl {width: 27.2727%; left: 0;}
#tm {width: 9.0909%; height: 100%; left: 31.8181%}
#tr, #br {width: 54.5454%; right: 0;}
#mm {width: 100%; height: 12.5%; top: 43.75%; left: 0; }