导航栏 - 差异化

时间:2015-09-11 16:58:36

标签: html css

我创建了一个很棒的导航栏。唯一的问题是,我创建了一个链接,我看不到链接的一半。

任何人都可以帮助我???

enter image description here

HTML:

    <header id="main-header">
        <nav class="main-nav">
            <table id="header-nav-table">
                <tr>
                    <td></td>
                    <td></td>
                    <td><a href="#" class="header-nav-table-button">LINK</a></td>
                </tr>
            </table>
        </nav>
    </header>

CSS:

body {
    background-color: #ECF0F1;
    font-size: 100%;
    font-family: 'Roboto', sans-serif;
}

section {
    margin-right: 15%;
    margin-left: 15%;
    margin-top: 15%;
    margin-bottom: 10%;
}

.main-nav {
    width: 100%;
    height: 18%;
    background-color: #FFFFFF;
    top: 0px;
    left: 0px;
    position: fixed;
    border-bottom: 2px solid #4682B4; /* steelblue */
}

.main-nav-addClass {
    width: 100%;
    height: 8%;
    background-color: #FFFFFF;
/*  top: -1px;
    left: -1px;*/
    position: fixed;
    border-bottom: 2px solid #4682B4; /* steelblue */
}

.header-nav-table-button {
    margin-left: 1200px;
    margin-top: 50px;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 1%;
    padding-bottom: 1%;
    border: 1px solid #4682B4;
    border-radius: 10px;
    color: #4682B4;
    background-color: #FFFFFF;
    text-align: center;
    text-decoration: none;
}

.header-nav-table-button:hover {
    cursor: pointer;
    border: 1px solid #ECF0F1;
    color: #FFFFFF;
    background-color: #4682B4;
}

1 个答案:

答案 0 :(得分:0)

您需要在实际表中添加一些填充,如此

#header-nav-table {
    padding-top:1%;
}

实施例: http://jsfiddle.net/p5pejgqg/1/