如何在徽标顶部留出空间

时间:2017-02-13 09:32:39

标签: html css

问题

图像徽标和菜单之间没有空格虽然我指定了margin-top:20px?

实际上我需要在看到徽标切割时显示完整徽标

徽标问题

I need leave small space between logo image and menu

我的小提琴作品如下:

https://jsfiddle.net/ahmedsa/z2pmwsnr/

我需要修改小提琴,在徽标图像和菜单之间留出空间。

图片徽标

http://www.mediafire.com/view/qd5otyc1w9yv5e9/logo.png

我的代码

ul {
    border-top: 4px solid red;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */

}

li {
    float: right;
}

li a {
    color: white;
    padding: 16px;
    text-decoration: none;
}
li i{

  color:white;
}
.w3ls_header_middle {
    padding: 0 0;
     padding-top:30px

}
.agileits_logo{
    float:right;
    margin-right:0em;
    margin-top:20px



}

0 个答案:

没有答案