gpt4 book ai didi

css - 关闭和打开 CSS 属性会改变外观

转载 作者:行者123 更新时间:2023-11-28 14:34:20 26 4
gpt4 key购买 nike

我正在尝试制作一个菜单按钮,该按钮是底部带有文本的图像,如下所示: jsfiddle

在 jsfiddle 上它工作正常,但是当我加载我的页面时,“title”元素不是在父元素的底部而是在它的顶部(在它的父边界之外):bad

在我的代码中,我使用了 a-tags 而不是 div,因为在 jsfiddle 上使用 a-tag 看起来不正确,但我认为这不是问题,因为我在代码中尝试过使用 div,并且“错误”仍然存在,外观没有改变:

<a class="menu-item" href="#">
<p>Title</p>
</a>

在检查模式(文本对齐、宽度、底部或边距)中关闭并打开其中一个标题属性后,它现在应该是:good什么?为什么?

在尝试解决此问题时,我发现当我从 .menu-item 中删除“margin: auto”时,它不再发生,但这显然不是解决方案,因为现在我的按钮没有居中。

.menu-item {
margin: auto;
}

我是 CSS 的新手,所以我想到的唯一解决方案是使用 JS 切换其中一个属性,但这似乎有点老套,我相信有更好的方法。我尝试更改 .css 文件中的样式顺序,但它什么也没做。

所以我的问题是:为什么会发生这种情况(不更改 css 样式中的任何内容,只是关闭和打开,更改外观),我该怎么做才能解决这个问题?

编辑:

我的本​​地文件:

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="styles.css">
</head>
<body>
<div class="top">
<div class="left"></div>
<div class="center">
<div class="menu">
<div id="left-mi" class="menu-item" href="#">
<p class="mi-title">Title</p>
</div>
<a id="middle-mi" class="menu-item" href="#"></a>
<a id="right-mi" class="menu-item" href="#"></a>
</div>
</div>
<div class="right"></div>
</div>
<div class="middle">
<div class="left"></div>
<div class="center">
</div>
<div class="right"></div>
</div>
<div class="bottom">
<div class="left"></div>
<div class="center"></div>
<div class="right"></div>
</div>
</body>
</html>

样式.css

body {
width: 100%;
margin: 0;
background: steelblue;
}

.left, .center, .right {
height: 100%;
display: table-cell;
}

.left, .right {
width: auto;
}

.center {
width: 50%;
margin: auto;
}

.top, .middle, .bottom {
display: table;
width: 100%;
}

.mi-title {
text-align: center;
background: rgba(0, 0, 0, 0.5);
width: 100%;

position: absolute;
bottom: 0;
margin: 0;
}

.menu-item {
height: 80%;
display: block;
margin: auto;
width: 30%;
position: relative;
}

.menu {
margin: auto;
width: 80%;
height: 100%;
background: magenta;

display: flex;
}

/*#region Heights*/
.top {
height: 200px;
}
.middle {
height: 300px;
}
.bottom {
height: 100px;
}
/*#endregion*/
/*#region Borders*/
.top .center, .bottom .center, .middle > div {
border: 1px solid black;
}
.top .center, .bottom .center {
border-top: 0;
border-bottom: 0;
}
.middle .left, .middle .right {
border-left: 0;
border-right: 0;
}
/*#endregion*/
/*#region Debug Colors*/
#left-mi {
background: red;
}
#middle-mi {
background: green;
}
#right-mi {
background: blue;
}

.top .left {
background: rgb(80, 0, 0);
}
.top .center {
background: rgb(160, 0, 0);
}
.top .right {
background: rgb(250, 0, 0);
}

.middle .left {
background: rgb(0, 80, 0);
}
.middle .center {
background: rgb(0, 160, 0);
}
.middle .right {
background: rgb(0, 250, 0);
}

.bottom .left {
background: rgb(0, 0, 80);
}
.bottom .center {
background: rgb(0, 0, 160);
}
.bottom .right {
background: rgb(0, 0, 250);
}
/*#endregion*/

最佳答案

你可以这样做。继续向左调整,直到按钮居中。可能有更好的解决方案,但我认为这很好用。

<a class="menu-item" href="#">
<p>Title</p>
</a>

而对应的CSS可以是

.menu-item {
width: 100px;
height: 100px;
background: red;
margin: none;
left:43%;
position: relative;
}

希望对你有帮助

关于css - 关闭和打开 CSS 属性会改变外观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53709533/

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