两列布局(一列定宽,一列自适应,列等高)
结构:
<span style="color: #008080;">1</span> <span style="color: #0000ff;"><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="parent"</span><span style="color: #0000ff;">></span> <span style="color: #008080;">2</span> <span style="color: #0000ff;"><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="left"</span><span style="color: #0000ff;">></span> <span style="color: #008080;">3</span> <span style="color: #0000ff;"><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>left<span style="color: #0000ff;"></span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">4</span> <span style="color: #0000ff;"></span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span> <span style="color: #008080;">5</span> <span style="color: #0000ff;"><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="right"</span><span style="color: #0000ff;">></span> <span style="color: #008080;">6</span> <span style="color: #0000ff;"><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>right<span style="color: #0000ff;"></span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">7</span> <span style="color: #0000ff;"><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>right<span style="color: #0000ff;"></span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">8</span> <span style="color: #0000ff;"></span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span> <span style="color: #008080;">9</span> <span style="color: #0000ff;"></span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span></span></span></span></span></span></span>
1.用table+table-cell实现两列布局(一列定宽,一列自适应,且table是自动的两列自动等高)
<span style="color: #008080;"> 1</span> <span style="color: #000000;">.parent { </span><span style="color: #008080;"> 2</span> <span style="color: #000000;"> background-color: grey; </span><span style="color: #008080;"> 3</span> <span style="color: #000000;"> width: 500px; </span><span style="color: #008080;"> 4</span> <span style="color: #000000;"> height: 300px; </span><span style="color: #008080;"> 5</span> <span style="color: #000000;"> padding: 10px; </span><span style="color: #008080;"> 6</span> <span style="color: #000000;"> box-sizing: border-box; </span><span style="color: #008080;"> 7</span> <span style="color: #008080;"> 8</span> <span style="color: #000000;"> display: table; </span><span style="color: #008080;"> 9</span> <span style="color: #000000;"> table-layout: fixed; </span><span style="color: #008080;">10</span> <span style="color: #000000;"> table-layout: fixed;/*加速table的渲染,实现布局优先*/ </span><span style="color: #008080;">11</span> <span style="color: #000000;"> } </span><span style="color: #008080;">12</span> <span style="color: #000000;"> .left { </span><span style="color: #008080;">13</span> <span style="color: #000000;"> display: table-cell; </span><span style="color: #008080;">14</span> <span style="color: #000000;"> width: 100px; </span><span style="color: #008080;">15</span> <span style="color: #008080;">16</span> <span style="color: #000000;"> background-color: skyblue; </span><span style="color: #008080;">17</span> <span style="color: #000000;"> border-right: 10px solid transparent; </span><span style="color: #008080;">18</span> <span style="color: #000000;"> background-clip: padding-box;/*设置背景的显示位置*/ </span><span style="color: #008080;">19</span> <span style="color: #000000;"> } </span><span style="color: #008080;">20</span> <span style="color: #000000;"> .right { </span><span style="color: #008080;">21</span> <span style="color: #000000;"> display: table-cell; </span><span style="color: #008080;">22</span> <span style="color: #000000;"> background-color: greenyellow; </span><span style="color: #008080;">23</span> }
2. 使用flex进行两列布局(一列定宽,一列自适应,列等高),flex的align-item属性默认值是stretch.
<span style="color: #008080;"> 1</span> <span style="color: #000000;">.parent { </span><span style="color: #008080;"> 2</span> <span style="color: #000000;"> background-color: grey; </span><span style="color: #008080;"> 3</span> <span style="color: #000000;"> width: 500px; </span><span style="color: #008080;"> 4</span> <span style="color: #000000;"> height: 300px; </span><span style="color: #008080;"> 5</span> <span style="color: #000000;"> padding: 10px; </span><span style="color: #008080;"> 6</span> <span style="color: #008080;"> 7</span> <span style="color: #000000;"> display: flex; </span><span style="color: #008080;"> 8</span> <span style="color: #000000;"> } </span><span style="color: #008080;"> 9</span> <span style="color: #000000;"> .left { </span><span style="color: #008080;">10</span> <span style="color: #000000;"> width: 100px; </span><span style="color: #008080;">11</span> <span style="color: #000000;"> margin-right: 10px; </span><span style="color: #008080;">12</span> <span style="color: #000000;"> background-color: skyblue; </span><span style="color: #008080;">13</span> <span style="color: #000000;"> } </span><span style="color: #008080;">14</span> <span style="color: #000000;"> .right { </span><span style="color: #008080;">15</span> <span style="color: #000000;"> flex: 1; /* 填充剩余部分 */ </span><span style="color: #008080;">16</span> <span style="color: #000000;"> background-color: greenyellow; </span><span style="color: #008080;">17</span> }
3.使用float(伪等高)
<span style="color: #008080;"> 1</span> <span style="color: #000000;">.parent { </span><span style="color: #008080;"> 2</span> <span style="color: #000000;"> background-color: grey; </span><span style="color: #008080;"> 3</span> <span style="color: #000000;"> width: 500px; </span><span style="color: #008080;"> 4</span> <span style="color: #000000;"> height: 300px; </span><span style="color: #008080;"> 5</span> <span style="color: #000000;"> padding: 10px; </span><span style="color: #008080;"> 6</span> <span style="color: #008080;"> 7</span> <span style="color: #000000;"> overflow: hidden;/*截断*/ </span><span style="color: #008080;"> 8</span> <span style="color: #000000;"> } </span><span style="color: #008080;"> 9</span> <span style="color: #000000;"> .left,.right { </span><span style="color: #008080;">10</span> <span style="color: #000000;"> padding-bottom: 99999px; </span><span style="color: #008080;">11</span> <span style="color: #000000;"> margin-bottom: -99999px; </span><span style="color: #008080;">12</span> <span style="color: #000000;"> }/*登高*/ </span><span style="color: #008080;">13</span> <span style="color: #000000;"> .left { </span><span style="color: #008080;">14</span> <span style="color: #000000;"> width: 100px; </span><span style="color: #008080;">15</span> <span style="color: #000000;"> background-color: skyblue; </span><span style="color: #008080;">16</span> <span style="color: #000000;"> margin-right: 10px; </span><span style="color: #008080;">17</span> <span style="color: #000000;"> float: left; </span><span style="color: #008080;">18</span> <span style="color: #008080;">19</span> <span style="color: #000000;"> } </span><span style="color: #008080;">20</span> <span style="color: #000000;"> .right { </span><span style="color: #008080;">21</span> <span style="color: #000000;"> overflow: hidden; </span><span style="color: #008080;">22</span> <span style="color: #000000;"> background-color: yellowgreen; </span><span style="color: #008080;">23</span> }

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 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 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 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; 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

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

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
