关于css中的align-content属性详解
align-content
作用:
会设置自由盒内部各个项目在垂直方向排列方式。
条件:
必须对父元素设置自由盒属性display:flex;,并且设置排列方式为横向排列flex-direction:row;并且设置换行,flex-wrap:wrap;这样这个属性的设置才会起作用。
设置对象:
这个属性是对她容器内部的项目起作用,对父元素进行设置。
取值:
stretch:默认设置,会拉伸容器内每个项目占用的空间,填充方式为给每个项目下方增加空白。第一个项目默认从容器顶端开始排列。
<span style="color: #800000;">html> <meta charset="UTF-8"> <title> Align-content </title> <style> #father</style></span>{<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">200px</span>;<span style="color: #ff0000;"> display</span>:<span style="color: #0000ff;">flex</span>;<span style="color: #ff0000;"> flex-direction</span>:<span style="color: #0000ff;">row</span>;<span style="color: #ff0000;"> flex-wrap</span>:<span style="color: #0000ff;">wrap</span>;<span style="color: #ff0000;"> align-content</span>:<span style="color: #0000ff;">strech</span>;<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">200px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">grey</span>; }<span style="color: #800000;"> .son1</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">orange</span>; }<span style="color: #800000;"> .son2</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">red</span>; }<span style="color: #800000;"> .son3</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">#08a9b5</span>; }<span style="color: #800000;"> <div id="father"> <div class="son1"> q </div> <div class="son2"> w </div> <div class="son3"> e </div> <div class="son3"> e </div> <div class="son3"> e </div> </div> </span>
Center:这个会取消项目之间的空白并把所有项目垂直居中。
<span style="color: #800000;">html> <meta charset="UTF-8"> <title> 关于文档元素测试 </title> <style> #father</style></span>{<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">200px</span>;<span style="color: #ff0000;"> display</span>:<span style="color: #0000ff;">flex</span>;<span style="color: #ff0000;"> flex-direction</span>:<span style="color: #0000ff;">row</span>;<span style="color: #ff0000;"> flex-wrap</span>:<span style="color: #0000ff;">wrap</span>;<span style="color: #ff0000;"> align-content</span>:<span style="color: #0000ff;">center</span>;<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">200px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">grey</span>; }<span style="color: #800000;"> .son1</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">orange</span>; }<span style="color: #800000;"> .son2</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">red</span>; }<span style="color: #800000;"> .son3</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">#08a9b5</span>; }<span style="color: #800000;"> .son4</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">#9ad1c3</span>; }<span style="color: #800000;"> .son5</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">rgb(21,123,126)</span>; }<span style="color: #800000;"> <div id="father"> <div class="son1"> q </div> <div class="son2"> w </div> <div class="son3"> e </div> <div class="son4"> e </div> <div class="son5"> e </div> </div> </span>
Flex-start:这个会取消项目之间的空白,并把项目放在容器顶部。
<span style="color: #800000;">html> <meta charset="UTF-8"> <title> 关于文档元素测试 </title> <style> #father</style></span>{<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">200px</span>;<span style="color: #ff0000;"> display</span>:<span style="color: #0000ff;">flex</span>;<span style="color: #ff0000;"> flex-direction</span>:<span style="color: #0000ff;">row</span>;<span style="color: #ff0000;"> flex-wrap</span>:<span style="color: #0000ff;">wrap</span>;<span style="color: #ff0000;"> align-content</span>:<span style="color: #0000ff;">flex-start</span>;<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">200px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">grey</span>; }<span style="color: #800000;"> .son1</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">orange</span>; }<span style="color: #800000;"> .son2</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">red</span>; }<span style="color: #800000;"> .son3</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">#08a9b5</span>; }<span style="color: #800000;"> .son4</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">#9ad1c3</span>; }<span style="color: #800000;"> .son5</span>{<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;">30px</span>;<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;">100px</span>;<span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;">rgb(21,123,126)</span>; }<span style="color: #800000;"> <div id="father"> <div class="son1"> q </div> <div class="son2"> w </div> <div class="son3"> e </div> <div class="son4"> e </div> <div class="son5"> e </div> </div> </span>
flex-end:这个会取消项目之间的空白并把项目放在容器底部。
align-content:flex-end;
space-between这个会使项目在垂直方向两端对齐。即上面的项目对齐容器顶部,最下面一个项目对齐容器底部。留相同间隔在每个项目之间。
align-content:space-between;
Space-around:这个会使每个项目上下位置保留相同长度空白,使得项目之间的空白为两倍的单个项目空白。
align-content:space-around;
Inherit:使得元素的这个属性继承自它的父元素。
innitial:使元素这个属性为默认初始值。

Outils d'IA chauds

Undresser.AI Undress
Application basée sur l'IA pour créer des photos de nu réalistes

AI Clothes Remover
Outil d'IA en ligne pour supprimer les vêtements des photos.

Undress AI Tool
Images de déshabillage gratuites

Clothoff.io
Dissolvant de vêtements AI

AI Hentai Generator
Générez AI Hentai gratuitement.

Article chaud

Outils chauds

Bloc-notes++7.3.1
Éditeur de code facile à utiliser et gratuit

SublimeText3 version chinoise
Version chinoise, très simple à utiliser

Envoyer Studio 13.0.1
Puissant environnement de développement intégré PHP

Dreamweaver CS6
Outils de développement Web visuel

SublimeText3 version Mac
Logiciel d'édition de code au niveau de Dieu (SublimeText3)

Sujets chauds

Le cache de mise à jour de la page Web du compte officiel, cette chose est simple et simple, et elle est suffisamment compliquée pour en boire un pot. Vous avez travaillé dur pour mettre à jour l'article officiel du compte, mais l'utilisateur a toujours ouvert l'ancienne version. Dans cet article, jetons un coup d'œil aux rebondissements derrière cela et comment résoudre ce problème gracieusement. Après l'avoir lu, vous pouvez facilement faire face à divers problèmes de mise en cache, permettant à vos utilisateurs de toujours ressentir le contenu le plus frais. Parlons d'abord des bases. Pour le dire franchement, afin d'améliorer la vitesse d'accès, le navigateur ou le serveur stocke des ressources statiques (telles que des images, CSS, JS) ou du contenu de la page. La prochaine fois que vous y accédez, vous pouvez le récupérer directement à partir du cache sans avoir à le télécharger à nouveau, et il est naturellement rapide. Mais cette chose est aussi une épée à double tranchant. La nouvelle version est en ligne,

Cet article démontre un ajout de bordure PNG efficace aux pages Web à l'aide de CSS. Il soutient que CSS offre des performances supérieures par rapport à JavaScript ou à des bibliothèques, détaillant comment ajuster la largeur, le style et la couleur des bordures pour un effet subtil ou proéminent

L'article traite du HTML & lt; Datalist & GT; élément, qui améliore les formulaires en fournissant des suggestions de saisie semi-automatique, en améliorant l'expérience utilisateur et en réduisant les erreurs. COMMANDE COMPRES: 159

L'article discute de l'utilisation des attributs de validation de formulaire HTML5 comme les limites requises, motifs, min, max et longueurs pour valider la saisie de l'utilisateur directement dans le navigateur.

L'article examine les meilleures pratiques pour assurer la compatibilité des navigateurs de HTML5, en se concentrant sur la détection des fonctionnalités, l'amélioration progressive et les méthodes de test.

L'article traite du HTML & lt; Progress & GT; élément, son but, son style et ses différences par rapport au & lt; mètre & gt; élément. L'objectif principal est de l'utiliser & lt; Progress & gt; pour l'achèvement des tâches et & lt; mètre & gt; pour stati

L'article traite du HTML & lt; mètre & gt; élément, utilisé pour afficher des valeurs scalaires ou fractionnaires dans une plage, et ses applications courantes dans le développement Web. Il différencie & lt; mètre & gt; De & lt; Progress & gt; et ex

Cet article explique le html5 & lt; time & gt; élément de représentation sémantique de date / heure. Il souligne l'importance de l'attribut DateTime pour la lisibilité à la machine (format ISO 8601) à côté du texte lisible par l'homme, stimulant AccessIbilit
