Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どうすればこれを達成できますか?
<div id="check > <div>hello</div> x3 <div> jello</div> y3 </div>
すべてのアイテムを水平に配置するには、次のようなcssを期待していました。
#check {display:inline;}
しかし、私はこのようなものを得ます:
hello x3 jello y3
私は次のようなものが欲しい:hello x3 jello y3
ここで何が欠けていますか?
コンテナ内のdivに使用する必要があります
#check div {display: inline;}