我已經把社交媒體圖標放在了我的html的右側,但是我無法再集中我的標題,我該如何解決這個問題?由於社交媒體圖標而無法集中標題?
我已經試過text-align: center
,它不起作用。
#socialm{
float:right;
}
#socialm ul li{display: inline;}
<header>
<div id="socialm">
<a href="https://www.facebook.com" target="_blank"><img src="facebook.png" width= "45px" height="45px"/></a>
<a href="https://www.instagram.com" target="_blank"><img src="instragram.png" width= "45px" height="45px"/></a>
<a href="https://www.youtube.com/channel/..." target="_blank"><img src="youtube.png" width= "45px" height="45px"/></a>
</div>
<h1>Photography and visual arts</h1>
</header>
H1 {文本對齊:中心;} ?? –
1.你的問題標籤是不正確的(標題 - 你的例子中沒有真正的標題,中心 - 可能是你的問題的答案,但目前我沒有看到'中心'標籤,'圖標' - 根本不相關)。 2.缺少css文件,我們沒有在你的代碼中看到你是如何試圖把你的標題居中。 3.「我不能把我的標題集中起來」 - 這意味着什麼?它對齊了嗎?對?更好地描述你的問題。請編輯您的答案和標籤,並添加相關的css代碼以獲得更好的幫助。 –
你的HTML有一個錯誤...你有多個右括號爲你的youtube屬性..''但這與你的問題沒有關係...... – chrisv