View Full Version : Can someone post examples of CSS (different)


Ready
03-21-2006, 09:24 PM
For example:

1 showing it dictating prop. of the background

2 showing div style for a text box, can I tell the dimensions I want? i.e... 700x400 (minus the size of the scrollbar)

3 inline style...i think this is just for one specific element, but I would like to see it in use.

I want to put a text box area with a scrollbar (colored) and under this I want my image which doesn't repeat.....so the scrollbar scrolls text over my image within a cell (<td>)

Anyone have good examples? I must be really slow I looked at how to make a CSS on this site but ....i guess I need to see it use to actually understand stand it.

afirefly
03-21-2006, 09:44 PM
To write inline, we can start with <p> </p>, the normal surroundings of a paragraph. Then, in the opening <p> tag, we'll add special code to say we want a style, merely <p style="">. Then, inside the quotes, we'll add all the properties and values we want this specific paragraph tag to have. So we'll make ours

<p style="text-indent: 3em;"> </p>

need to do it for each paragraph

I use www.davesite.com and his tutorial ... that is example from it. He writes about two pages
then He has a place where u can try it out. I find really helpful.

Also do u have and editor that u can see how it changes as u do things?

I use handyhtml3. u can use free for 30 days.

I ended up buying it.

So inline is just for that line....

Ready
03-21-2006, 10:11 PM
Ok I don't know if what I want to do can be done but ......does this go before or after the other stuff?

<td width="700" height="400" bgcolor="black" align="center" colspan="4"><p><b><font face="arial">The 2006 schedule for Andrew McKay will likely consist of participation in<br>all of the WISSOTA Amsoil Series events and also a majority of the<br>WISSOTA Challenge Series events. At this time they are also working on<br>an open motor program with sponsors and will hopefully compete in 10-15<br>open shows that will include the WDRL and the local open shows<br>throughout the summer (Deer Creek Speedway, Cedar Lake Speedway).<br><br><br>As soon as the schedules come out for the 2006 season we will evaluate<br>the dates and put together a tentative schedule.<br><br><br>Please check back for updates.</font></b></p></td>



thanks