gpt4 book ai didi

html - 如果我将窗口变小,我的布局会自行混合

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

如果我将浏览器的窗口变小,那么按钮会混合在一起, Logo 也会稍微向下。我希望按钮和 Logo 仍应保留在原处。我怎么能意识到这一点?提前致谢!

html:

<!DOCTYPE html>
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="css/main.css" type="text/css"/>
</head>
<html>
<body>
<div id="header">
<table>
<th>
<img id="logo" src="images/logo.jpg">
</th>
<th>
<div id="menue_bar">
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Contact</a>
</div>
</th>
</table>
</div>
</body>
</html>

和CSS:

#menue_bar {
padding: 24px;
border: #999 1px dashed;
margin-left: 20px;
}
#menue_bar > a{
font-size:17px;
padding: 12px 24px;
margin-right: 10px;
text-decoration: none;
border-style: solid;
border-radius: 3px;
transition: background 0.3s linear 0s, color 0.3s linear 0s;
}
#header {
background-color: #FFFF;
height: 80px;
}

最佳答案

您需要响应式设计。有很多方法可以做到这一点,一些简单的规则是:

  1. 避免固定尺寸(px)并开始使用可缩放的单位(em、% 等)
  2. 使用 CSS 媒体查询

推理:

  1. 固定尺寸​​单位就是固定尺寸。您的布局在 1 个屏幕/窗口大小下看起来很棒,但在其他情况下将不可预测
  2. 某些屏幕尺寸需要进行重大布局更改,而缩放单元无法完成这些更改,为此您将需要一组不同的 CSS 以及将这组 CSS 应用于相应屏幕尺寸的方法,因此需要媒体查询。

然而,有很多框架可以为您完成所有这些工作,请参阅 skeletonBoostrap

关于html - 如果我将窗口变小,我的布局会自行混合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23676336/

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