我試圖對準它的一些風格錨元素,但它出來是一個爛攤子,它不是對齊正確,請參閱本說明這裏錨元素犯規正確對齊
爲我有這樣的結構
<p style="margin-top: 0 !important; text-align: center; padding: 0 !important;" align="center"><span style="font-size: x-large; color: #00ccff;">Our information technology consulting services include:</span></p>
<div class="extend clear">
<a class="circle" href="http://westchestercomputerconsulting.com/it-consulting-services">IT Consulting Services:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/remote-support">Remote Support:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/hosted-exchange">Hosted Exchange:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/remote-backup-services">Remote Backup Services:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/cloud-server-solutions">Cloud Server Solutions:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/cloud-solutions">Cloud Solutions:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/wi-fi-design-service-consultation">WiFi Design Service & Consultation:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/application-development">Application Development:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/web-developments-and-design"> Web Development And Design:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/document-management-solutions">Document Management Solutions:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/network-design-and-implementation">Network Design And Implementation:</a>
<a class="circle" href="http://westchestercomputerconsulting.com/voip-pbx-services">VoIP Phone Services:</a>
</div>
和上述結構的CSS。
.circle{
color: #fff;
padding: 8px;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 17px;
text-shadow: 1px 1px 1px #363232;
background: #8c8b8b;
display: block;
float: left;
margin: 5px;
vertical-align: top;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.extend{max-width: 100%; max-height: 100%;}
.clear{float: none; clear: both;}
上述造型如此基地,它應該做的,是應該對準錨標籤的左側,並通過爲5px對每一側的邊緣,在8像素的兩側,邊框半徑填充3px,文字陰影,字體大小爲17px,背景和字體顏色。除了應該幫助指定元素將它自我對齊到左側的樣式之外,Everthing的作品可以通過網絡搜索,但沒有任何效果,我試着在樣式上播放,但不幸的是沒有任何作用,所以我在這裏尋找至少一個想法或建議如何正確對齊。
「Archieves」 被拼寫錯了,應該是 「檔案」 –
是你看到的是什麼瀏覽器和版本?在任何其他瀏覽器中都可以嗎?你也有一類明確的包含div。我認爲這是一個嘗試自我清除自己的孩子的班級。你可以添加清楚的CSS並擴展到帖子請。我懷疑還有一些其他的CSS導致了這個問題,你沒有在你的問題中顯示。 –
@DaveHaigh:請參閱我更新的帖子,即時通訊使用chrome版本28.0.1500.71米。 –