gpt4 book ai didi

html - 边框半径仅适用于 div 的一侧

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

当我遇到问题时,我目前正在一家小型企业的网站上工作,当我尝试将边框半径应用于 div 时,它只将其应用于左侧,我在 google 和 stack overflow 中搜索了一个类似的答案,但没有找到任何东西。

    body
{
background-color: #e0e0e0;
}

#banner
{
background-color: #404040;
height: 10em;
border-radius: 1em;
box-shadow: -0.1em 0.3em;
}

#bannerimg
{
height: 65%;
margin-left: 1em;
margin-top: 1em;
}

#container
{
margin-left: 20em;
margin-top: -7em;
overflow: hidden;
border-radius: 1em;
}

.list
{
float: left;
padding: 1.5em;
font-size: 2em;
color: #067411;
background-color: #e0e0e0;
}
    <header id="banner">
<div id="container">
<a class="list">Services</a>
<a class="list">Remote Support</a>
<a class="list">Home</a>
<a class="list">About Us</a>
<a class="list">Contact Us</a>
<div>
</header>

如果有人有答案,将不胜感激

最佳答案

背景颜色与标题 div 重叠。

    body
{
background-color: #e0e0e0;
}

#banner
{
background-color: #404040;
height: 10em;
border-radius: 1em;
box-shadow: -0.1em 0.3em;
}

#bannerimg
{
height: 65%;
margin-left: 1em;
margin-top: 1em;
}

#container
{
margin-left: 20em;
margin-top: -7em;
overflow: hidden;
border-radius: 1em;
}

.list
{
float: left;
padding: 1.5em;
font-size: 2em;
color: #067411;
/*background-color: #e0e0e0;*/
}
    <header id="banner">
<div id="container">
<a class="list">Services</a>
<a class="list">Remote Support</a>
<a class="list">Home</a>
<a class="list">About Us</a>
<a class="list">Contact Us</a>
<div>
</header>

关于html - 边框半径仅适用于 div 的一侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50443722/

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