如何让banner图片延伸至整个长度,并且logo居中?

发布于 2024-12-10 17:30:10 字数 1470 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

メ斷腸人バ 2024-12-17 17:30:10

您需要执行以下操作:

  1. .banner 上设置新的 height 我选择 70px

  2. .banner 一个 background-size:100 %

  3. .site_title 中删除 vertical-align 并添加 < code>margin-top: -15px;

CSS

.banner {
   position: relative;
   height: 70px;
   z-index: 1;
   border-style: solid;
   border-width: 1px;
   border-color: gray;
   background-image:url('http://www.problemio.com/img/ui/banner_background.png');
   background-size: 100%;
}

.site_title {
   float: left;
   margin-top: -15px;
   margin-left: 20px;
   width: 300px;
}

You need to do the following:

  1. set a new height on the .banner I choose 70px

  2. give .banner a background-size:100%

  3. remove vertical-align from .site_title and add margin-top: -15px;

CSS

.banner {
   position: relative;
   height: 70px;
   z-index: 1;
   border-style: solid;
   border-width: 1px;
   border-color: gray;
   background-image:url('http://www.problemio.com/img/ui/banner_background.png');
   background-size: 100%;
}

.site_title {
   float: left;
   margin-top: -15px;
   margin-left: 20px;
   width: 300px;
}
泅人 2024-12-17 17:30:10

将其添加到 div.bannerbackground-size: 100%;

和 div.site_title margin-top: -20px;

哦,然后安装 firebug下次自己做

add this to div.banner class background-size: 100%;

and div.site_title margin-top: -20px;

oh and install firebug and do it yourself next time

独行侠 2024-12-17 17:30:10

尝试右边界:0;

.banner {
position: relative;
height: 70px;
z-index: 1;
border-style: solid;
border-width: 1px;
border-color: gray;
background-image: url('http://www.problemio.com/img/ui/banner_background.png');
background-size: 100%;
border-right: 0;
}

try border-right: 0;

.banner {
position: relative;
height: 70px;
z-index: 1;
border-style: solid;
border-width: 1px;
border-color: gray;
background-image: url('http://www.problemio.com/img/ui/banner_background.png');
background-size: 100%;
border-right: 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文