Hi! So, I'm in the process of designing my [first] full website. I've been watching tutorials on Lynda.com... And I'm at an area were I'm learning to create
templates in Dreamweaver from scratch. So, The area I'm stuck in is; I'm suppose to go into snippets.. Select CSS, and then Reset: Universal Selector
But in my snippets folder I only have:
Footers
Form Elements
JavaScript
Meta
Navigation
Text
Legacy
All help is welcomed
- Caroline
You can create your own new Snippets CSS folder and add a Snippet for universal reset selector.
You should note that what resets should be included is a bit controversial.
This simple one ‘resets’ the margin, padding, border and outline properties on all elements:
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
Check back for other responses
North America
Europe, Middle East and Africa
Asia Pacific