gpt4 book ai didi

html - 根据响应式布局中前一个元素的宽度更新同级元素 css

转载 作者:行者123 更新时间:2023-11-28 09:35:40 26 4
gpt4 key购买 nike

我的布局目前在 320 像素分辨率下中断(.info 低于 .icon 并中断布局),我不知道如何防止它中断。

.num info(number) 正在动态加载,可以是 0 - 2147483647 之间的任何值。如果屏幕分辨率不够宽,无法在一行上显示 .num 和 .unread,而不是中断,我希望 .unread 下降到下一行(display:block 应用于它?)。我试图想办法只使用 css,然后虽然如果存在超过 2 个数字我可以使用 js 应用类,但是如果分辨率更宽并且可以显示更多数字,这个方向似乎仍然不正确。例如 - 1000px 可以显示更多数字......在这种情况下我希望它保持在一行上。

我的代码如下:

<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
<style>
body{
padding:20px;
}
.wrapper {
background-color:#cccccc;
border-radius:20px;
overflow:hidden;
border:2px solid black;
}
.icon {
font-size:40px;
padding:12px;
display:block;
}
.icon, .info {
float:left;
}
.info {
border-left:1px solid black;
padding-left: 15px;
}
.info h3 {
font-size:16px;
margin:10px 0 0;
}
.info p {
margin:10px 0;
}
.num {
font-weight:bold;
font-size:20px;
}
.unread {
white-space: nowrap;
}
</style>
</head>

<body>
<div class="wrapper">
<div>
<div class="icon">X</div>
<div class="info">
<h3>Header Information</h3>
<p>
<a class="num">23</a>
<span class="unread">Unchecked Voicemails to Date</span>
</p>
</div>
</div>
</div>
</body>

</html>

http://plnkr.co/edit/18Mids4M3SupNwOT8ocP?p=preview

最佳答案

我想通了。我需要向 .info 容器添加一个宽度,并使 .info p 内部的元素显示:inline-block。

<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
<style>
body{
padding:20px;
}
.wrapper {
background-color:#cccccc;
border-radius:20px;
overflow:hidden;
border:2px solid black;
}
.icon {
font-size:40px;
padding:12px;
}
.icon, .info {
float:left;
}
.info {
border-left:1px solid black;
padding-left:15px;
width:60%;
}
.info h3 {
font-size:16px;
margin:10px 0 0;
}
.info p {
margin:5px 0 15px;
}
.info span {
display:inline-block;
}
.num {
font-weight:bold;
font-size:20px;
}
</style>
</head>

<body>
<div class="wrapper">
<div>
<div class="icon">X</div>
<div class="info">
<h3>Header Information</h3>
<p>
<a class="num">2</a>
<span class="unread">Unopened Voicemails</span>
</p>
</div>
</div>
</div>
</body>

</html>

http://plnkr.co/edit/NanIRaMcK9AJvpNEQG3Z?p=preview

关于html - 根据响应式布局中前一个元素的宽度更新同级元素 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25539497/

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