gpt4 book ai didi

css - 显示 : inline are hidden 的 div 元素

转载 作者:行者123 更新时间:2023-12-04 19:35:07 25 4
gpt4 key购买 nike

如果我是对的,display:inline 应该在同一行显示 div,没有任何换行符。这是我的网页,其中 display:inline 只是让我的 div 不可见:

<html>
<head>
<style type="text/css">
.body{
max-width:3072px;
min-width:3072px;
margin:0px auto;
background:#293231;

}

.page1{
background:url('Main.jpg') no-repeat;
width:1024px;
height:211px;


}

.page2{
background:url('Page2.jpg') no-repeat;
width:1024px;
height:211px;
display:inline;
}

.page3{
background:url('Page3.jpg') no-repeat;
width:1024px;
height:211px;
display:inline;
}

.wrapper{
display:block;
width:100%;
height:auto;
}

</style>
</head>
<body class="body">

<div class="wrapper">
<div class="page1">

</div>
<div class="page2">

</div>
<div class="page3">

</div>
</div>

</body>
</html>

我可以看到 class = page1 的 div,但是 page2 和 page3 是不可见的。

最佳答案

非 block 元素不能像那样指定高度/宽度(并且内部没有内容,它不会给它大小) - 相反你想要 inline-block,像这样:

display: inline-block;

You can see a full list of options for display here

关于css - 显示 : inline are hidden 的 div 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3123843/

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