i would like to make ‘skinnable’ a web site written in asp.net…
I explain: for example, i have a ‘div’ element, and i would like to define a background-color using a variable, not a fixed value.
How can i do ?
Css ? Or other tecniques ?
Thanks
i would like to make ‘skinnable’ a web site written in asp.net… I explain:
Share
CSS is exactly what your are looking for.
Keep in mind that when writing your classes and ids you should refer to the element semantically. It means you should NOT choose your names depending on the visual representation of the element.
Wrongs:
boxOnLeft
Goods:
related
To be able to skin your page, you’ll just need to change your css.
Almost all is possible using CSS.