• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

add Style tag for the page

 
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to apply this style to entire page or part of it. It is dynamic.
I was wondering if there is a way to do this. Like
<style>
"font-size: 12pt; color: fuchsia"
</style>

will apply to any object that follows this. In my case, I am generating
some pages based on data in the database. So I like to apply this to entire page or any specific section etc. Is there a general syntax that applies to whatever object follows. Examples I have read only apply to specific table etc, here I do not know where I am applying as the page
layouts are driven by database.

Thanks
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you asking how to apply the style to the entire document?
If so....


Eric
 
Raj Puri
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<style type="text/css">html, body{background-color:red;........}</style>

Do we need to type html, body etc. I was looking for a general synatx that applies to any object that follows.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic