Super basic css questions – how to customize page layout?
-
Hi
As you understand html and css are new to me. Im trying to change the page layout for a single page and wounder how to go about it… I get the result I want by writing <div style=whatever and so on > but I guess that as hardly a kickass webbmaster way to go about it…
Can I write a stylesheet in an single page (if the question make any sense at all) or do I have to modify style.css?
-
Can I write a stylesheet in an single page (if the question make any sense at all) or do I have to modify style.css?
You can add inline styles, but it’s not a best practice for a few different reasons. If you switch themes after adding a lot of CSS, it could be a mess to untangle. Also, inline styles make it so you have to repeat code more often.
If you’re interested in a good basic CSS tutorial, check out this one:
http://www.htmldog.com/guides/cssbeginner/
- The topic ‘Super basic css questions – how to customize page layout?’ is closed to new replies.