allright, i managed to stretch a div horizontally, now i bumped into another problem which you probably can guess...
vertical stretching :S, i put up a css file, so it can be examined more easily, my page is still very premature so normally i would make a css file when i got the design perfectly clear. enough talk, here are my codes
my xhtml:
my css:
Thou shalt be victorious!!
vertical stretching :S, i put up a css file, so it can be examined more easily, my page is still very premature so normally i would make a css file when i got the design perfectly clear. enough talk, here are my codes
my xhtml:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<style type="text/css" media="screen">@import url(dcon.css);</style>
</head>
<body>
<div id="topbar"></div>
<div id="navbar"></div>
</body>
</html>
my css:
Code:
body
{
margin: 0px;
padding: 0px
}
#topbar
{
background-color: green;
width: 100%;
height: 90px;
}
#navbar
{
position: relative;
background-color: green;
width: 90px;
}
Thou shalt be victorious!!