gpt4 book ai didi

html - 我的内容周围的 CSS 边框

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

所以,我有一个非常非常简单的内容页面。出于某种原因,我的内容周围一直有边框。

.container {
width: 100%;
height: 100%;
}
.container iframe {
height: 100%;
width: 100%;
}
#navbar-2 {
height: 0px;
width: 100%;
background: #2B2B2B;
}
.container input {
width: 100px;
height: 25px;
}
.body {
background-color: #F1F1F1;
color: #FC5E5E;
top: 0px;
left: 0px;
right: 0px;
}

这是我的 HTML。

<html>
<body>
<center>
<small>Please note that only links that will be looked at are *<b>SoundCloud and Youtube</b>.* </small><br>
<small>For the E-Mail form you must submit your ACTUAL email or the request will not send, For Song URL you need to submit a valid You-Tube link or SoundCloud link in order for it to submit. </small><br>
<form action="submit.php" method="post">
<small><p><b>Twitch Name:</b></small><br> <input type="text" name="yourname" /><br>
<small><b>Song Name:</b></small><br> <input type="text" name="subject" /><br>
<small><b>E-mail:</b></small><br> <input type="text" name="email" /><br>
<small><b>Song URL:</b></small><br> <input type="text" name="website"></p>
<small><p><b>Lifestory:</b></small><br />
<textarea name="comments" rows="1" cols="40"></textarea></p>
<p><input type="submit" value="Send it!"></p>
<p> </p>
</form>
</center>
<div id="navbar-2"></div>
<iframe src="" frameBorder="0">Browser not compatible. </iframe>
</div>
</div>
</body>
</html>

你可以看到图像中的边框:

enter image description here

看起来大约是5PX,而且不是来自iframe。

最佳答案

在没有 CSS 的网络时代,HTML 是预先设计好的。其中一些样式包括围绕整个文档的填充。

您要找的是 reset stylesheet .

A CSS Reset (or “Reset CSS”) is a short, often compressed (minified) set of CSS rules that resets the styling of all HTML elements to a consistent baseline.

您可以从网络上的各种来源找到它们,like this one ,您只需在其他样式之前链接到它即可。

<link rel="stylesheet" type="text/css" href="css/reset.css">

希望这对您有所帮助!

关于html - 我的内容周围的 CSS 边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27629989/

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