HTML看起來像這樣HTML/CSS中心內的另一個DIV,使一個div它擴展
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Oppgave 5</title>
<style type="text/css">
</style>
</head>
<body>
<div id="animWrap">
<div id="boks"></div>
</div>
</body>
</html>
我想要做的是使DIV id爲「伯克」擴大和「吃」整個DIV 「animWrap」。
所以我的CSS是如下:
body{
margin: 0px;
}
#animWrap{
height: 600px;
width: 960px;
background-color: rgb(145, 75, 75);
margin: auto;
position: relative;
}
#boks{
width: 250px;
height: 175px;
top: 200px;
left: 380px;
background-color: rgb(180, 100, 100);
position: absolute;
transition: all 5s linear 0s;
}
#animWrap:hover #boks {
height: 400px;
width: 580px;
}
我注意到的是,它只是擴展到右側,朝下方。可能是因爲它沒有正確居中。有沒有什麼方法可以從中間向每個方向擴展它,只有html和css?
刪除絕對定位,並添加'保證金:0 auto'來自'#boks' – Pete