CSS border
Out of context: Reply #7
- Started
- Last post
- 11 Responses
- amullins0
also. use a css reset.
/**
* Reset Browser Styles
*/
html,body { width: 100%; height: 100%; }
body,button,div,dl,dt,dd,ul,ol,l... { margin: 0; padding: 0; }
table { border-collapse: collapse; border-spacing: 0; }
fieldset,img,hr { border: none; }
address,caption,cite,code,dfn,em... { font-style: normal; font-weight: normal; }
ol { list-style: decimal; }
ul { list-style: none; }
caption,th { text-align: left; }
q:before,q:after { content: ""; }
abbr,acronym { border-bottom: 1px dotted; color: #005865; cursor: help; }
hr { border-bottom: 1px solid; height: 1px; overflow: hidden; }align center with this (remove the align attribute from your wrapper div):
<div id="wrapper"></div>
#wrapper {
margin: 0 auto;
width: 1000px; /*set to the width of shadow_middle.png*/
}