如何使頂部的導航條基於圖像位置居中,而不是整個導航欄的塊?將一個元素置於nav中間
我之所以想到這個,是因爲如果某人有一個長名字,那麼nav就不會看起來居中。我想知道做出相對的位置,但我不確定這是否會起作用,或者使用浮動或不是。
.profileinfo {
padding: 0 10px;
float: left;
}
.profileinfo:nth-child(2) img {
align: middle;
width: 60px;
height: 60px;
border-radius: 50%;
}
.profileinfo:first-child {
border-right: 1px solid silver;
}
.profileinfo:last-child {
border-left: 1px solid silver;
}
.profileinfo:last-child,
.profileinfo:first-child {
margin-top: 20px;
}
#container {
height: 80px;
width: 300px;
margin: 10px auto;
padding: 0;
}
ul {
list-style-type: none;
}
<ul id="container">
<li class="profileinfo">Ashley Siwiec</li>
<li class="profileinfo">
<a href="/accounts/profile/">
<img src="//dummyimage.com/60">
</a>
</li>
<li class="profileinfo">C: 175</li>
</ul>
你有中間'img'的常維? –