我想寫一個CSS腳本,除了第五個div作爲容器外還包含4個div。除了容器外還有四個div的CSS樣式DIV
Div 1應該位於頂部作爲標題,Div 2應位於容器右側的中心,Div 4(Containing img src)應位於容器的中心,Div 3應該在圖像的底部。
我有一個腳本作爲試用,但它不像我想要的(Iam初學者在CSS中)。
<html xmlns="http://www.w3.org/1999/html">
<head>
<title> </title>
<meta charset="utf-8">
<style>
#siena img {
display: inline-block;
margin-left: 0px;
}
#Container
{
margin-bottom: 3pc;
text-align: center;
border-width:2px;
border-color: #46b8da ;
margin-right: 100px;
margin-left: 100px;
border-style: solid;
background-color :#c4e3f3;
padding :10%;
}
#link
{
display: inline-block;
}
#price
{
top:100px;
width:50%
margin:0 auto;
float:right;
}
</style>
</head>
<body>
<meta charset="utf-8">
<h1 style="text-align: center;"> Text </h1>
<div id="Container" > <p>
<div id="siena" >
Text
<img src='http://www.traidnt.net/vb/attachments/480574d1272729780-no_pic.gif'>
<div id="price" >
price
</div>
</div>
<div id="link" >
<a href='https://www.google.com/?gws_rd=ssl' > </a>
</div>
</div>
</body>
</html>
你需要html代碼和css代碼才能使它工作,你能告訴我們你到目前爲止做了什麼嗎? – turbopipp
我編輯了我的代碼 – JavaFan
爲了幫助您瞭解錯誤發生的位置,我創建了[colorcoded jsfiddle](http://jsfiddle.net/turbopipp/7tzce63q/)。我建議將來在不同的DIV中添加背景顏色,以便更容易理解/學習如何使用DIV和CSS進行構建。 – turbopipp