このdivの作成方法は、画像の後に開始されます。 コンテナの先頭から開始します。 /float:left;/profile imageに追加しました。2 divs in 1 line
HTMLとCSSコード:
.profile{
border: 1px solid #ddd;
padding: 22px;
min-height: 150px;
}
.profile img{
max-width: 150px;
width: 100%;
float: left;
}
.profile #details{
margin-left: 50px;
}
<section class="profile">
<img src="https://www.sonypark360.net/wp-content/uploads/2017/08/profile-pictures.png" alt="profile">
<div id="details">
<h1>Name</h1>
<h2>Age</h2>
<h3>City, Country</h3>
</div>
</section>
のPrあなたが持っている問題を示す最小限の出力を生成するために必要なhtml、cssを用意してください。 –
@hasnain Aliインラインで表示したい2つのdivを含むdivを表示するには 'display:inline-flex'を使用してください。 –
@MouradKaroudi 'display:inline-flex'は私のために働きましたが、ここをクリックしてください:https://imgur.com/yLwCPzo –