作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
带有 header
类的 div 有一个 display:flex
属性。我希望 flex 属性仅应用于链接而不影响“nonflex”div。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<title>return</title>
</head>
<body>
<div class="header">
<a href="#">Accueil</a>
<a href="#">Statistiques</a>
<a href="#">SMS</a>
<a href="#">mise a jour</a>
<a href="#">Parametres</a>
<div class="nonflex">
</div>
</div>
</body>
</html>
最佳答案
您只需将 wrap 属性设置为 flex 元素并将宽度设置为 100% 到 .nonflex
子元素,它仍然是一个 flex-child。但那时还不那么明显。
.header {
display:flex;
flex-wrap:wrap;
/* demo ? */
justify-content:space-around;
}
.header .nonflex {
width:100%;
/* see me for the demo*/
padding:1em;
border:solid;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<title>return</title>
</head>
<body>
<div class="header">
<a href="#">Accueil</a>
<a href="#">Statistiques</a>
<a href="#">SMS</a>
<a href="#">mise a jour</a>
<a href="#">Parametres</a>
<div class="nonflex">
</div>
</div>
</body>
</html>
关于javascript - 我可以应用显示 : flex to a parent and not to a specific child? 吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41368770/
我是一名优秀的程序员,十分优秀!