gpt4 book ai didi

html - 如何使用 HTML/CSS 实现页面在背景上的效果?

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

我是网页设计新手。我想让我的页面看起来像这里的页面:http://www.456bereastreet.com/archive/200501/turning_a_list_into_a_navigation_bar灰色背景上有一个圆 Angular 矩形,其中包含所有内容。我该怎么做?

最佳答案

这是页面当前使用的基本 HTML 和 CSS 样式。因此,他们将所有内容包装在 <div> 中。并将该特定样式类应用于 div .

HTML:

<body>
<div class="wrap">
...Content...
</div>
</body>

CSS:

body {
min-width: 0;
}
body {
color: #333333;
font: 100%/1.4 Georgia,serif;
margin: 0 auto;
max-width: 100%;
min-width: 830px;
padding: 0;
width: 62em;
}
<!--wrap class css code-->
.wrap {
-webkit-border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
border-radius: 4px 4px 4px 4px;
-webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
background: none repeat scroll 0 0 #FFFFF0;
margin: 16px;
padding: 10px 0 0;
position: relative;
}

关于html - 如何使用 HTML/CSS 实现页面在背景上的效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7882560/

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