我對此很陌生,非常感謝一些指導。我想用css將我的圖像放在div中。我已經使用了內聯元素,它仍然出現在圖像下面。這裏是我的代碼爲我的用戶界面按鈕:需要CSS定位幫助
#UIButtons {
position:fixed;
top: 50%;
left: 40%;
width:45em; /* this is correct and displays how I want it to*/
height:18em;
margin-top: -9em;
margin-left: -15em;
background: url(backtabss.png);
}
#UIButtons ul{ /* this has set the height ok*/
position:relative;
top: 9%;
right: 50%;
width:45em;
}
#UIButtons li {/*not sure what this is doing to be honest*/
position:relative;
top: 70%;
left: 45%;
display: inline; /* this is not working my images are appearing vertical*/
padding: 40px;
}
我已經評論了代碼,讓你知道發生了什麼。 HTML是:
<div id="UIButtons">
<ul>
<li><a href="tutorials.html"><img src="beginBUT.png" alt="Click to start Tutorials" title=" Click this button to start Tutorials" width="300" height="250"/></a></li>
<li><a href="sChords.html"><img src="beginCHO.png" alt= "Click to view Chord Sheet" title=" Click this button to view Chord Sheet" width="300" height="250"/></a></li>
</ul>
</div>
謝謝你的時間。我看過這裏的其他建議,但沒有人幫助我,實際上它讓我更加困惑!
您需要填寫的詳細信息..至少框架問題發佈之前..它不能創建一個jfiddle – Andy897
真的令人困惑的問題不知道你想要什麼嗎? –
考慮傾向於使用像[Twitter Bootstrap](http://getbootstrap.com/getting-started/)這樣的良好文檔的CSS框架,並保持它非常簡單。像這樣的框架的好處是,你不需要知道或寫入CSS。請按照他們在文檔中提供的示例進行操作。以下是一些[Bootstrap示例](http://getbootstrap.com/getting-started/#examples)來幫助您入門。 –