0
私は画像を必要とし、L1とL2は1つの行にあります... L2は常に画像のボトルトンにあります... なぜですか? 私のネストされた行が正しいと思います...それはOKですか? ブートストラップネストされた行の問題は1行にありません
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>appLanding</title>
<link href="../css/bootstrap.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-1">
<img src="face-03.jpg" class="img-rounded img-responsive" style="margin-top: 4%">
</div>
<div class="col-xs-9 col-xs-offset-2">
<div class="row">
<div class="col-xs-12">L1</div>
</div>
<div class="row">
<div class="col-xs-12">L2</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12" dir="rtl">
<div style="height:120px;width:100%;overflow:auto;padding: 1%">
As you can see, once there's enough text in this box, the box will grow scroll bars... that's why we
call it a scroll box! You could also place an image into the scroll box.
</div>
</div>
</div>
</div>
</body>
</html>
感謝の男...働いていました... – user3585139