2013-10-23 38 views
0

對於愚蠢的問題,我很抱歉,因爲我是html5和css的新手,主要是在joomla中使用模板。我想添加共享這個按鈕到我的模板文件,所以我已經從共享這個網站的代碼,並添加按鈕沒有問題。我有的問題是中心按鈕。不知道什麼樣式我需要添加和在哪裏,預先感謝任何指針...如何將樣式添加到span類中

我如何告訴這些坐在頁面中間?不知道在何處/如何添加文本對齊...

<span class='st_facebook_large' displayText='Facebook'></span> 
<span class='st_twitter_large' displayText='Tweet'></span> 
<span class='st_googleplus_large' displayText='Google +'></span> 
<span class='st_linkedin_large' displayText='LinkedIn'></span> 
<span class='st_email_large' displayText='Email'></span> 

回答

0

您可以通過兩種方式來完成。您可以使用外部樣式表來放置所有的類和ID樣式,也可以使用style =「」;在跨度的範圍內。因此,例如:

CSS

.st_email_large { 
    margin:0 auto; 
    width: 300px; 
    text-align: center; 
} 

在這種情況下,(())表示括號內的階級,一切是你的跨度會做什麼。或者您可以這樣做:

<span class='st_email_large' style="margin:0 auto; width: 300px; text-align: center;" displayText='Email'></span> 

如果您使用外部樣式表,則需要確保將其包含在頭標記內的頁面中。

+0

第三種選擇是將包含在一個