在我的菜單欄中,我有一個使用字體真棒的搜索圖標。菜單欄中的每個項目都在填充它,但搜索的高度大約是其父項的80-85%。這是我的html代碼Font Awesome not filling menu
<html>
<head>
<title>main page</title>
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css"/>
<style>
body
{
margin:0px;
padding:0px;
}
ul
{
margin:0px;
padding:0px;
background-color:#CC6666;
overflow:hidden;
list-style-type:none;
font-size:18;
font-weight:bold;
}
li{float:right;}
li a
{
display:inline-block;
display:inline-block;
text-decoration:none;
color:white;
text-align:center;
padding:12px 16px;
font-weight:400;
padding-right:15px;
}
li a:hover, .dropdown:hover .dropbtn{
background-color:#666666;
margin:0px;
}
.active{
background-color:#666666;
}
.search{
float:left;
}
</style>
</head>
<body>
<div class="posi">
<ul>
<li><a class="active" herf="home">خانه</a></li>
<li>
<a href="#">سوالات متداول</a>
</li>
<li>
<a href="#">عضویت در سایت</a>
</li>
<li>
<a herf="#">معرفی</a></li>
<li class="search"><a href="#"><i class="fa fa-search"></i></a></li>
</ul>
</div>
</html>
我怎樣才能解決這個問題?
調整圖標的字體大小,使其充滿你的空間慾望(試試〜17px) – haxxxton
我沒有得到你的要求。 – Bhawna
你想減小搜索圖標的大小... – Prateek