Okay, it’s kind of hard to understand, I know, but what I want to do is show the Css text Itself and not just apply the Css to the blog. I don’t want to put it in an overflow property, I just want people to see the code itself. HELP?
th { color: red }
#mydiv { some style code } — these look normal in every browser if not placed inside an embedded style sheet.
An inline style or the attribute: style=”font-size: 12pt”
outside of a containing element shows as plain text.
You can also try one of the character codes like
& lt; & gt; which display as <>
that way you can write out the code in html and it will show what you want .. look up latin character codes in google to find a list of all the symbols you might need.
December 19th, 2006 at 6:08 am
1.Go to google.com and sign up for a google account.
2. Go to Google Documents.
3. Type in the CSS code in a new google document.
4. Click “edit html”: this allows you to see the html code that creates the letters and symbols in your CSS code.
5. Copy the html
6. Paste the html code onto your blog.
7. Hooray, the css code itself appears on your site!
December 21st, 2006 at 11:00 pm
If you mean like so ppl could see the code and not have it like actually turn into the style.. then I only know how to do it inside a scrollbox. use
put code here
If that’s not what you mean, then IDK.
December 24th, 2006 at 7:56 pm
Why not just use plain text…
th { color: red }
#mydiv { some style code } — these look normal in every browser if not placed inside an embedded style sheet.
An inline style or the attribute: style=”font-size: 12pt”
outside of a containing element shows as plain text.
You can also try one of the character codes like
& lt; & gt; which display as <>
that way you can write out the code in html and it will show what you want .. look up latin character codes in google to find a list of all the symbols you might need.
Hope this helps