gpt4 book ai didi

css - 向网站添加边框 - 尝试了所有方法但无法正确设置

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

如有任何帮助,我们将不胜感激。如何在我的整个网站周围添加边框?我刚刚开始学习 HTML 和 CSS,但我还没有发现如何去做。我网站上的文字太宽了,我希望它看起来更整洁、更整洁——就像这个一样。 http://www.millcreekconstruction.biz/ .

我只希望复制并粘贴一段代码,看看它是否真的有效,然后我就可以编辑样式和颜色。我只是不知道把 HTML 和 CSS 代码放在哪里。我认为 HTML 隐藏在“标题”之下,而 CSS 用于主体内部的边框 - 但我尝试过的任何东西都不起作用。

这是我网站的 html 的第一部分:

<!DOCTYPE html>
<html lang="en-US" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<script>(function(html){html.className = html.className.replace(/\bno-
js\b/,'js')})(document.documentElement);</script>
<title>It &#8211; Built with SitePad</title>
<link rel="alternate" type="application/rss+xml" title="It &raquo; Feed"
href="feed/" />
<link rel="alternate" type="application/rss+xml" title="It &raquo; Comments
Feed" href="comments/feed/" />


<link rel='stylesheet' id='this-style-css' href='css/style.css'
type='text/css' media='all' />
<link rel='stylesheet' id='sitemush-fonts-css'
href='https://fonts.googleapis.com/css?


<style type="text/css">.recentcomments a{display:inline
!important;padding:0 !important;margin:0 !important;}</style>
</head>

<body class="home page page-id-6 page-template-default">
<div id="page" class="site container-fluid">
<div class="site-inner">

最佳答案

这个问题有点模棱两可,但我猜你要么试图在整个页面或其内容周围放置边框。

第一个非常简单:

#overlay {
position: fixed;
top: 4px;
left: 4px;
right: 4px;
bottom: 4px;
outline: 4px solid black;
}
<div id="overlay"></div>

您可以编辑现在设置为 4px 的值,还可以更改颜色和线条类型(dasheddotted 等)

第二种选择更简单:

#page {
/* IDK if you have already applied the styles to position it, but I assume you have */
outline: 2px solid black;
}
<div id="page">
<p>Your content, whatever it is</p>
</div>

同样,您可以编辑线宽、颜色和类型。

另一个想法,因为我看到你可能正在使用 Bootstrap(因为我是一个向导而不是因为我注意到你使用了 container-fluid 类),一个更好的选择可以是只使用 card并将您的网站内容放入其中

关于css - 向网站添加边框 - 尝试了所有方法但无法正确设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50888783/

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