
24-09-2007, 10:06 AM
|
 |
Novice Webmaster
|
|
Join Date: May 2007
Location: KL
Posts: 35
Rep Power: 0
|
|
scroll bar
Dear all..
i'm designing a portal using html+css, and i wanna have scrollbar inside it.
my problem is, the scrollbar is already there but how to set the font, what if i want to add images inside it..??
below is what i've done
from page.html
<FORM>
<textarea cols="70" rows="15" style="border:0;" >
the content
</textarea>
</FORM>
from layout.css
body {
background-image:url('images/bg.jpg');
font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
font-size: 10px;
text-align:center;
margin-left:auto; margin-right:auto; margin-top:0; margin- bottom:auto;
scrollbar-face-color: #3E5221;
scrollbar-track-color: #FFFFFF;
scrollbar-arrow-color: #FFFFFF;
}
am i using the rite way?
|