gpt4 book ai didi

html - 在 Chrome 中使用 @media 时,在显示 block 之后不应用显示内联 block

转载 作者:行者123 更新时间:2023-11-28 10:02:59 25 4
gpt4 key购买 nike

我仅在 Chrome 35(IE9、10、11、FF 30 - 确定)中遇到“配置”(最后一个)列表项的问题。当窗口宽度 >480px 最后一个列表正确显示时;当窗口宽度 <=480px 最后一个列表也正确显示时;

但是一旦我将窗口大小从 ex: 400px 调整为 600px - 列表项就会下降。

有人知道为什么会这样吗?(我现在知道如何解决它了——使用绝对位置而不是右浮动。只是好奇为什么会这样,看起来像是 Chrome 缺陷)

html:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>html css</title>

<link rel="stylesheet" href="css/style.css"/>

</head>
<body>
<header>
<div class="logo">
<a href="#"></a>

<h1>Contacts Manager</h1>
</div>
<div class="search-contact">
<input type="text" placeholder="Search contact here">
<button>Search</button>
</div>
</header>

<nav class="tabs">
<ul>
<li><a href="#">All</a></li>
<li class="active"><a href="#">Favourite</a></li>
<li><a href="#">My Scrum team</a></li>
<li><a href="#">Scrum teams</a></li>
<li><a href="#">Configure</a></li>
</ul>
</nav>

</body>
</html>

CSS:

ul {
list-style-type: none;
}

h1, h2, ul {
margin: 0;
padding: 0;
font-weight: normal;
}

header {
display: block;
}

header input {
border: 1px solid #aaa;
font-size: 12px;
padding-left: 5px;
padding-right: 25px;
margin-right: 0;
}

header button {
font-size: 12px;
color: #fff;
margin-left: 0;
background-color: #ED1C24;
border: 1px solid #990000;
padding: 1px 15px;
}

header .logo {
display: inline-block;
}

header .logo > a:before {
content: url(../img/serena_logo.gif);
}

header .logo > h1 {
display: inline-block;
font-size: 27px;
margin: -2px 0 0 10px;
vertical-align: top;
}

header .search-contact {
display: inline-block;
vertical-align: top;
margin-top: 3px;
float: right;
}

nav li.active {
background: linear-gradient(to bottom, #e51920 1%, #a90507 100%);
}

nav li:not(.active):hover {
background: linear-gradient(to bottom, #356aa0 0%,#356aa0 100%);
}

nav li:not(.active):hover a {
color: #fff;
}

nav li.active a {
color: #fff;
}

nav.tabs {
clear: both;
background: linear-gradient(to bottom, #646464 0%, #323232 100%);
margin-bottom: 15px;
}

nav.tabs ul {
display: block;
}

nav.tabs a {
color: #eee;
}

nav.tabs ul > li {
display: inline-block;
padding: 10px 20px;
margin-right: -4px;
}

nav.tabs ul > li a {
display: block;
font-weight: bold;
text-decoration: none;
}

nav.tabs ul > li:last-child {
float: right;
margin: 0;
}

@media all and (max-width: 670px) {

nav.tabs ul > li {
padding: 10px 7px;
}
}

@media all and (max-width: 480px) {

nav.tabs ul > li {
padding: 5px 0 5px 10px;
display: block;
float: none;
margin-right: 0;
}

nav.tabs ul > li:last-child {
float: none;
}
}

最佳答案

像下面这样更新 (max-width: 480px) 的媒体查询语法。

@media all and (max-width: 480px) {
nav.tabs ul > li {
padding: 5px 0 5px 10px;
display: block;
float: none !important;
margin-right: 0;
}
nav.tabs ul > li:last-child {
display:inline-block !important;
width:100%;
box-sizing:border-box;
}
}

DEMO

关于html - 在 Chrome 中使用 @media 时,在显示 block 之后不应用显示内联 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24651318/

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