gpt4 book ai didi

html - 如何阻止空的 html 元素变得无量纲?

转载 作者:行者123 更新时间:2023-11-28 11:25:02 25 4
gpt4 key购买 nike

更新:

我发现 float #name左边解决了我的问题。奇怪的是它仍然居中。我不明白为什么会这样……但现在可以了。


我有一个使用 AJAX 更新 <p> 的网络应用程序带有一些由脚本生成的文本的元素。当页面最初加载时,<p>为空 ( <p id="name"></p> )。它下面还有另外两个元素,都在 <div> 内居中。 , 它们是 <img>和一个 <p>分别。

这是 html:

<html>
<head>
<title>Name Generator</title>
<link rel="stylesheet" type="text/css" href="static/main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="static/name.js"></script>
</head>

<body>
<div>
<p id="name"> </p><br/>
<p id="title">GENERATE YOUR NAME</p>
<img id="button" src="static/generator.png"/>
</div>
</body>
</html>

和 CSS:

body {
/*border: 1px dashed white;*/
position:relative;
width: 960px;
margin: 0 auto;
padding: 0;
text-align:center;
background-image:url('static/background-soundproof.png');
background-repeat:no-repeat;
background-size:cover;
}

div {
/*border: 1px dashed blue;*/
text-align: center;
width: 400px;
height: 600px;
margin: auto;
}

#name {
color:black;
text-shadow:0 0 12px white;
text-transform:capitalize;
font-family: Impact, Sans-Serif;
font-weight:100;
font-size:2.5em;
margin: 0 auto;
position: relative;
top: 60px;
}

#title{
font-family:Courier, sans-serif;
font-size:1.5em;
color:#7D7DBD;
position: relative;
top: 400px;
}

img {
margin: auto;
position: relative;
top:150px;
}

我的问题是,当页面首次加载时,第一个 <p>是空的,因此,它似乎没有任何维度。当 <img>单击,<p>更新了一些文本,这导致它下面的元素向下移动页面大约新更新的高度 <p> .有没有一种方法可以加载页面,使空元素具有固定的尺寸,并在更新时保持不变。所以它的尺寸基本上不会改变,也不会改变任何东西。

我尝试在 css 中为其指定宽度和高度、填充和边距,但无济于事。我也试过让它最初用 '&nbsp' 填充我在某处读到的可能会奏效,但事实并非如此。非常感谢任何帮助。

最佳答案

Demo

将此添加到您的 CSS 中

p#name{
min-height: 150px;
}

编辑:

p#name{
display:inline-block;
min-width: 150px;
min-height: 150px;

关于html - 如何阻止空的 html 元素变得无量纲?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21394915/

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