gpt4 book ai didi

html - 如何使用 css 将我的对象放在页面的中央?

转载 作者:太空宇宙 更新时间:2023-11-04 03:03:28 24 4
gpt4 key购买 nike

我无法将我的 div 类“bubblewrap”置于页面的正中央。请告诉我怎么做。我目前使用的通常有效的方法现在不起作用。

body {
background-color: black;
}

.bubble
{
position: relative;
width: 200px;
height: 70px;
padding: 0px;
background: #FFFFFF;
-webkit-border-radius: 0px;
-moz-border-radius:0px;
border-radius: 0px;
margin-left:10px;
margin-top:10px;

}

.bubble:after
{
content: '';
position: absolute;
border-style: solid;
border-width: 9px 16px 9px 0;
border-color: transparent white;
display: block;
width: 0;
z-index: 1;
left: -16px;
top: 26px;
}

.oddbubble
{
position: relative;
width: 200px;
height: 70px;
padding: 0px;
background: #FFFFFF;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
margin-top:10px;
}

.oddbubble:after
{
content: '';
position: absolute;
border-style: solid;
border-width: 9px 0 9px 16px;
border-color: transparent #FFFFFF;
display: block;
width: 0;
z-index: 1;
right: -16px;
top: 26px;
}

.bubblewrap {
margin:auto;
position:absolute;
top:0; bottom:0; left:0; right:0;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link href="bubble.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="bubblewrap">
<div class="bubble"></div>
<div class="oddbubble"></div>
<div class="bubble"></div>
<div class="oddbubble"></div>
</div>
</body>
</html>

我认为问题出在我的定位上,但不确定。

最佳答案

.bubble {
margin: 0 auto;
margin-top: 12px;
margin-bottom: 12px;
}

.oddbubble {
margin: 0 auto;
}

它会为你工作。

JS-Fiddle

关于html - 如何使用 css 将我的对象放在页面的中央?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30906219/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com