0

私はBootstrapを初めて使用し、問題に遭遇しました:

私のページのHTMLは次のとおりです。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>Watch The Shawshank Redemption</title>
    <link href="/Content/bootstrap/bootstrap.css" rel="stylesheet" />
    <link href="/Content/Site.css" rel="stylesheet" />
    <link href="//vjs.zencdn.net/4.1/video-js.css" rel="stylesheet">
</head>
<body>
    <div class="container">
        <div class="row">
            <div class="col-lg-8 col-md-8 col-sm-8 col-md-offset-2">
                <div class="row">
                    <div class="col-lg-3 col-md-3 col-sm-3">
                        <img class="img-rounded img-border" src="http://ia.media-imdb.com/images/M/MV5BODU4MjU4NjIwNl5BMl5BanBnXkFtZTgwMDU2MjEyMDE@._V1_SX214_.jpg" />
                    </div>
                    <div class="col-lg-9 col-md-9 col-sm-9">
                        <h2 class="pagination-centered">The Shawshank Redemption</h2>
                        <p>Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.</p>
                        <div class="row">
                            <div class="col-lg-4 col-md-4 col-sm-4"><i class="glyphicon glyphicon-time"></i>142 minutes</div>
                            <div class="col-lg-4 col-md-4 col-sm-4">Release year: 1994</div>
                            <div class="col-lg-4 col-md-4 col-sm-4">Category: Crime</div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <script src="/Scripts/jquery-2.0.3.js"></script>
    <script src="/Scripts/jquery.unobtrusive-ajax.js"></script>
    <script src="/Scripts/bootstrap.js"></script>
    <script src="//vjs.zencdn.net/4.1/video.js"></script>
    <script src="/Scripts/initializers/initializer.js"></script>

</body>
</html>

ただし、何らかの理由で、下の画像に示すように、テキストが部分的に画像に配置されています。

ここに画像の説明を入力

テキストが画像の上に配置されているのはなぜですか? 画像に 3 列、テキストに 9 列の行を指定したと思ったので、それらがどのように互いに入り込むかわかりません。

4

1 に答える 1

3

画像に のクラスを指定しimg-responsiveます。画像の幅が広すぎるだけです。

于 2013-10-16T11:43:45.473 に答える