Maison > Questions et réponses > le corps du texte
P粉4784456712023-08-22 13:51:31
Je sais que c'est une très vieille question. Je publie ici une solution à ce problème, en utilisant FlexBox. Voici la solution :
#container { height: 100%; width: 100%; display: flex; } #leftThing { width: 25%; background-color: blue; } #content { width: 50%; background-color: green; } #rightThing { width: 25%; background-color: yellow; }
<div id="container"> <div id="leftThing"> 左侧菜单 </div> <div id="content"> 随机内容 </div> <div id="rightThing"> 右侧菜单 </div> </div>
Ajoutez simplement display:flex
dans le récipient ! Pas besoin d'utiliser des flotteurs.
P粉8422150062023-08-22 11:58:42
Je recommande de ne pas utiliser de flotteurs pour gérer cette situation, je préfère utiliser inline-block
.
Quelques points supplémentaires à considérer :
<head>
和<body>
doctype
Voici une meilleure façon de formater votre document :
<!DOCTYPE html> <html> <head> <title>网站标题</title> <style type="text/css"> * {margin: 0; padding: 0;} #container {height: 100%; width:100%; font-size: 0;} #left, #middle, #right {display: inline-block; *display: inline; zoom: 1; vertical-align: top; font-size: 12px;} #left {width: 25%; background: blue;} #middle {width: 50%; background: green;} #right {width: 25%; background: yellow;} </style> </head> <body> <div id="container"> <div id="left">左侧菜单</div> <div id="middle">随机内容</div> <div id="right">右侧菜单</div> </div> </body> </html>
Voici également un jsFiddle pour référence.