首页 > 解决方案 > css水平菜单,垂直间距

问题描述

我有两排水平的菜单项。顶行的底部和底行的顶部没有间距,它们在视觉上看起来可以合并作为 CSS 的绝对初学者,我无法弄清楚要修改哪一行代码才能将这两行分开,几个 px 就可以了任何建议将不胜感激

<style>

.droplinetabs{
    position: relative;
    background: white;
    text-align: left; /* set to left, center, or right */
    font: bold 12px, verdana; 
}

.droplinetabs *{
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.droplinetabs a{
    text-decoration: none;
    color: white;
    display: inline-block; 
    font-weight: bold;
    padding: 12px 12px;
    position: relative;
}
.droplinetabs ul{
    list-style: none;
    margin: 0;
    padding: 0;
	-webkit-perspective: 1000px;
	perspective: 1000px;
    -webkit-perspective-origin: 50% 0%;
	perspective-origin: 50% 0%;
}

/* Top Level LI style */
.droplinetabs > li{
}

/* Top Level link style */
.droplinetabs > li > a{
    border-radius: 10px 10px 0 0;
    background: #669900;
    text-transform: uppercase;
}

/* Top Level link style on hover and when active */
.droplinetabs li:hover > a {
    background: #669900;
}

.droplinetabs li{
    display: inline;
}

/* drop line ULs style */
.droplinetabs ul{
    background: #669900;
    position: absolute;
    left: -5000px;
    width: 100%;
    opacity: 0;
    padding: 0px 0;
    top: auto;
    border: 1px solid #ddd;
    box-shadow: 0 3px 5px #eee;
    -webkit-transform: rotateX(-70deg);
    transform: rotateX(-70deg);
    backface-visibility: hidden;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition: opacity .3s, -webkit-transform .5s, visibility 0s .3s, left 0s .3s;
    transition: opacity .3s, transform .5s, visibility 0s .3s, left 0s .3s;
}

/* Reveal sub menu on hover */
.droplinetabs li:hover > ul{
    opacity: 1;
    left: 0;
    top: auto;
    z-index: 1000;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, transform .5s;
}

.droplinetabs ul li{
    display: inline;

}

/* Sub Levels link style on hover and when active */

.droplinetabs ul li:hover > a {
    background: #669900;
    border-radius: 10px;
}

/* LIs with a sub UL style */
.droplinetabs li > a {
    /* add padding to accomodate arrow inside LIs */
    padding-right: 30px;
}

/* LIs with NO sub UL style */
.droplinetabs li > a:only-child {
    /* undo padding for non submenu LIs */
    padding-right: 15px;
}


/* Arrow for LIs with sub ULs */
.droplinetabs li > a:after {
    /* add arrow inside LIs */
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: black;
    top: 45%;
    right: 8px;
}


/* LIs with NO sub UL pseudo class */
.droplinetabs li > a:only-child:after {
    /* undo arrow for non submenu LIs */
    display: none;
}

/* ####### responsive layout CSS ####### */

@media (max-width: 720px) {
/* Top Level link style */
    .droplinetabs > li > a{
       border-radius: 0;
       margin-top: 5px;
    }
    
}

</style>

.droplinetabs { font-family: Verdana ; font-size: 10px}

.droplinetabs { font-family: Verdana ; font-size: 12px; clip:     rect(   )}

.droplinetabs { 
    list-style: none;
    margin: 0 0;
    padding: 0 0;
 } 

标签: css

解决方案


推荐阅读