在按钮之间添加空格?

时间:2013-07-14 21:44:37

标签: html css navigation rollover

嗨我这里有一个代码,除了一件事以外都是完美的。代码中的每个按钮之间没有空格。我试过保证金,但不幸的是它是一个无序列表所以我有点困惑。我将添加或替换什么以在两个按钮之间留出空间。救命?? :(

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<style type="text/css">

    .rollovericons a#terms{
        display: block;
        width:138px;
        height:27px;
        background:  url(http://icpy.webs.com/button/Terms.png) no-repeat;
    }

    .rollovericons a:hover#terms{
        background: url(http://icpy.webs.com/button/Terms0.png) no-repeat;
    }
    .rollovericons a#contact{
        display: block;
        width:138px;
        height:27px;
        background:  url(http://icpy.webs.com/button/contact.png) no-repeat;
    }

    .rollovericons a:hover#contact{
        background: url(http://icpy.webs.com/button/contact0.png) no-repeat;
    }

</style>

<body>

<div class="rollovericons">
    <a href="http://www.twitter.com" id="terms"></a>
    <a href="http://www.twitter.com" id="contact"></a>
</div>

</body>

3 个答案:

答案 0 :(得分:16)

只是做:

.rollovericons a{
    margin: 10px;
}

这将为<a>类中的每个rollovericons项添加一个边距。

答案 1 :(得分:1)

我添加了一个名为space的类,它将在按钮之间添加一个空格。

这是jsfiddle,你可以看到:http://jsfiddle.net/mFfAX/

.space {margin-bottom:15px}

答案 2 :(得分:0)

试试这个:

.rollovericons ul li {
display: inline;
list-style-type: none;
padding-right: 7px;
}

<div class="rollovericons">
<ul>
<li><a href="http://www.twitter.com" id="terms"></a></li>
<li><a href="http://www.twitter.com" id="contact"></a></li>
</ul>
</div>