Closed (fixed)
Project:
Basic
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Nov 2008 at 09:55 UTC
Updated:
11 Aug 2009 at 21:24 UTC
Jump to comment: Most recent
The user-agent style sheet in Safari (maybe Chrome too) overrides the reset declaration:
* {
margin:0;
padding:0;
}
We should probably used specific element names instead. Or, go with Meyer's full reset:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
body {
line-height: 1;
color: black;
background: white;
}
ol, ul {
list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}
Comments
Comment #1
Anonymous (not verified) commentedYou can use the yahoo reset, it is in style.css
Comment #2
Anonymous (not verified) commentedComment #3
Anonymous (not verified) commentedYou can use this version, the latest one :
Comment #5
seutje commented@3 that license isn't compatible with GPL
Comment #6
Anonymous (not verified) commentedThe Yahoo Reset is not in Basic anymore.
It is now left to the themer to chose what reset, if any, they want to use.