我试图用css调整下拉菜单的大小,但是我的CSS出了点问题。我需要调整高度以使其看起来正常。请看截图。 这是我的CSS:
ul#nav {
font-family: 'Lato', sans-serif;
background: #ffffff;
list-style: none;
line-height: 40px;
}
ul#nav li {
display: inline-block;
position: relative;
z-index: 8;
}
ul#nav li:hover {
color: #000000;
background: #ffffff;
}
ul#nav li a {
font-size: 14px;
font-weight: normal;
color: #444444;
height: 40px;
display: block;
padding: 0 15px;
text-transform: uppercase;
letter-spacing: 1px;
line-height: 40px;
}
ul#nav li a:hover {
background: #ffffff;
color: #000000;
text-decoration: none;
}
ul#nav li ul{
display: none;
float: left;
position: absolute;
top: 34;
left: 0;
z-index: 5;
margin: 0;
padding: 0;
border: 1px solid #eeeeee;
}
ul#nav li ul:before {
content: '';
display: block;
position: absolute;
left: 50%;
border-color: transparent transparent #eeeeee transparent;
border-style: solid;
border-width: 8px;
margin-left: -8px;
bottom: 100%;
width: 0;
height: 0;
}
ul#nav li:hover ul{
display: block;
background: #ffffff;
}
ul#nav li ul li{
background: #ffffff;
color: #000000;
min-width: 150px;
width: 100%:
white-space: nowrap;
float: left;
text-align: left;
}
ul#nav li ul li:hover {
background: #ffffff;
}
ul#nav li ul li a:hover {
color: #000000;
background: #ffffff;
}
ul#nav li ul li a{
text-align: left;
padding-left: 10px;
color: #000000;
text-transform none! important;
}
我试图调整大小: http://imgur.com/lyLTxvD
答案 0 :(得分:1)
将export PIP_EXTRA_INDEX_URL=http://localhost:8080/simple/
属性添加到height
选择器。
像这样:
ul#nav li ul
希望这有帮助!
答案 1 :(得分:0)
尝试在 ul#nav li a 中修改 line-height 。