gpt4 book ai didi

html - 无法在 CSS 中将 div 居中(BANNER FIXED AT BOTTOM)

转载 作者:太空宇宙 更新时间:2023-11-04 16:00:10 25 4
gpt4 key购买 nike

我正在开发一个网站,我想在页面底部固定一个带有关闭按钮的横幅,以便人们可以关闭广告。

我用 css 实现了 div 的整体外观,但我不可能将它居中,我尝试 text-align: center, margin-left: auto, margin-right: auto, margin: 0 auto, 固定宽度为 300px和许多其他选项,但没有任何效果!!

这是我的横幅 CSS 代码:

#fragment {
font-size: 12px;
font-family: tahoma;
/* border: 1px solid #ccc;*/
color: #555;
display: block;
/* padding: 10px; */
box-sizing: border-box;
text-decoration: none;
min-height: 50px;
width: 300px;
overflow: hidden;
position: fixed;
bottom: 0;
margin-left: auto;
margin-right: auto;
}
#fragment:hover {
box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
}
#close {
float: right;
display: inline-block;
padding: 2px 5px;
background: #ccc;
}
#close:hover {
float: right;
display: inline-block;
padding: 2px 5px;
background: #ccc;
color: #fff;
}
<div id="fragment">
<span id="close" onclick="myFunction()">x</span>
<!--THE X ICON TO CLOSE THE BANNER -->
<!-- the script code of the ads provided by some company -->
</div>

最佳答案

我在宽度为 100% 的 div 中添加了 div#fragment。在该 div 中,div#fragment 居中对齐。我在 CSS 中做了一些修改。请检查代码片段如下:

/* Styles go here */

#fragment {
font-size: 12px;
font-family: tahoma;
border: 1px solid #ccc;
color: #555;
display: block;
box-sizing: border-box;
text-decoration: none;
min-height: 50px;
width: 300px;
overflow: hidden;
margin-left: auto;
margin-right: auto;
}

#fragment:hover {
box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
}

.row {
text-align: center;
position: fixed;
bottom: 0;
min-width: 100%;
}

.item-right {
text-align: right;
}

#close {
display: inline-block;
padding: 2px 5px;
background: #ccc;
}

#close:hover {
display: inline-block;
padding: 2px 5px;
background: #ccc;
color: #fff;
cursor: pointer;
}
<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div class="row">
<div id="fragment" class="item-right">
<span id="close" onclick="this.parentElement.style.display='none';">x</span>
</div>
</div>
</body>

</html>

相同的 Plunker 链接:https://plnkr.co/edit/57JYKVe5r459mmQsRQk5?p=preview

关于html - 无法在 CSS 中将 div 居中(BANNER FIXED AT BOTTOM),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42239630/

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