HTML
2 つの div を内部の中央に配置するにはどうすればよいですか?<div style=" width:100%; height:200px; border:1px solid red; text-align:center; margin:0px auto;"><div style=" width:150px;; height:120px; border:1px solid yellow; margin:10px 10px 0px 0px; float:left; "></div><div style=" width:150px; height:120px; border:1px solid red; float:left; margin:10px 10px 0px 0px; "></div></div>
2 つの div を固定幅で中央揃えでインストールするには、1 つの div を使用するだけです
<div style=" width:100%; height:200px; border:1px solid red;margin:0px auto;"> <div style="width:345px; margin:0px auto;"> <div style=" width:150px; height:120px; border:1px solid yellow; margin:10px 10px 0px 0px; float:left; "></div> <div style=" width:150px; height:120px; border:1px solid red; float:left; margin:10px 10px 0px 0px; "></div> </div></div>
固定幅以外の方法はありますか?
<div style=" width:100%; height:200px; border:1px solid red; margin:0px auto;"><div style=" width:20%;; height:120px; border:1px solid ; display:inline-block; margin:10px auto 0px 30%;"></div><div style=" width:20%; height:120px; border:1px solid red; display:inline-block; margin:10px auto 0px auto;"></div></div>
2 つの div を接続するには、幅と中央を固定するだけです。
固定幅以外の方法はありますか?
どういう意味ですか?あなたの中の2つの層が浮いている!他の方法はまだ知りません。
1.