我试图在我的h2和我的ul元素之间留出更少的空间。 但它似乎不可能带边距,ul元素似乎不允许有这个边际。 这是必要的一些技巧吗?因为我尝试利润但不起作用!
我的HTML:
<div id="page">
<div id="info">
<h2>List 1</h2>
<ul>
<li><strong>List Item 1</strong> this is the content 1</li>
<li><strong>List Item 2</strong> this is the content 2</li>
<li><strong>List Item 3</strong> this is the content 3</li>
</ul>
<h2>List 2</h2>
<ul>
<li><strong>List Item 1</strong> this is the content 1</li>
<li><strong>List Item 2</strong> this is the content 2</li>
<li><strong>List Item 3</strong> this is the content 3</li>
</ul>
</div>
</div>
我的css:
#page
{
width:300px;
margin:0 auto;
}
#page ul
{
list-style:none;
background:pink;
}
#page ul li
{
font-size:13px;
text-decoration:none;
margin-bottom:5px;
}
#page h2
{
font-size:15px;
color:#444;
font-weight:100;
margin-bottom:5px;
background:green;
}
#info
{
margin:10px 0 0 0;
}
答案 0 :(得分:1)
从我所看到的(仅使用您提供的代码),您没有考虑浏览器默认设置。如果您没有使用Eric Meyers重置http://meyerweb.com/eric/tools/css/reset/。简而言之,它会在所有浏览器中将所有设置设置为零,以使您的站点具有起点。
但是如果您不想使用或不能使用此重置css文件,则需要明确定义设置。在您的情况下,您需要为每个元素添加以下内容,您将消除当前的差距:
#page ul
{
list-style:none;
background:pink;
margin-top: 0; /*override the default browser setting for the UL element*/
}
如果您不希望H2和UL之间有任何空间,请将H2元素的margin-bottom更改为0.我希望这是您在问题中寻找的内容。
答案 1 :(得分:0)
使用CSS重置。这基本上意味着在应用自己的样式之前重置所有默认的填充和边距以及其他基本属性。
浏览器会为标记提供默认边距,并且它会因浏览器而异,因此您最好自行重置它们。
至少你应该在CSS的顶部加上这样的内容:* {margin:0;padding:0}
。
环顾四周,你可以找到一个不错的预制CSS重置。这是一个由Eric Meyers制作的受欢迎的作品:
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
将它包含在CSS的顶部,您无需担心默认的浏览器样式会妨碍您。