2016-04-14 12 views
0

this is my demo page私のdiv内にはブートストラップの列がありますが、その親クラスは絶対ですが、私の列はカルーセルの真中ではありません。divの途中でブートストラップ列を整列する方法は?

と私は親が絶対的であるので、あなたは私の構造

HTML

<html lang="en"> 
    <head> 
    <meta charset="utf-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <title>Bootstrap 101 Template</title> 

    <!-- Bootstrap --> 
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> 
    <!--[if lt IE 9]> 
     <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> 
     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 
    <![endif]--> 
    </head> 
    <body> 
    <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> 
    <!-- Indicators --> 
    <ol class="carousel-indicators"> 
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> 
    <li data-target="#carousel-example-generic" data-slide-to="1"></li> 
    <li data-target="#carousel-example-generic" data-slide-to="2"></li> 
    </ol> 

    <!-- Wrapper for slides --> 
    <div class="carousel-inner" role="listbox"> 

    <div class="myDiv "> 
      <div class="container"> 
      <div class="row"> 
       <div class="col-md-6 col-lg-6 col-sm-12 col-xs-12">left column..</div> 
       <div class="col-md-6 col-lg-6 col-sm-12 col-xs-12">right column..</div> 
      </div> 
      </div> 
    </div> 
    <div class="item active"> 
     <img src="http://www.aurumhotels.com.tr/resimler/normal/2015-08/FirmaArkaBanner1_4BuFjQUcCp3yALBpDUxLsignature.jpg" alt="..."> 
    </div> 
    <div class="item"> 
     <img src="http://www.aurumhotels.com.tr/resimler/normal/2015-12/FirmaArkaBanner1_Isrgao2xv47jrJVBsf2Hfirmaarkabanner2.png" alt="..."> 
    </div> 
    </div> 

    <!-- Controls --> 
    <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> 
    <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> 
    <span class="sr-only">Previous</span> 
    </a> 
    <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> 
    <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> 
    <span class="sr-only">Next</span> 
    </a> 
</div> 

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> 
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 
    <!-- Include all compiled plugins (below), or include individual files as needed --> 
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> 
    </body> 
</html> 

CSS

.my-slider{ 
     background:#FFF; 
     position: absolute;; 
     top:0; 
     z-index:1; 
} 
.item img { 
     width:100%; 
} 

答えて

0

あなたがこれを行うことができます:私は私のスライダが本当にmyDivであると仮定するつもりです

.myDiv{ 
    position: absolute; 
    background: #fff; 
    z-index:1; 
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    width: 50%; 

}

http://codepen.io/anon/pen/zqWmYB

+0

面白いとgreat..onに背景を移動私のデスクトップは以前のように働いています –

+0

@ani_css、これはセンタリングで素晴らしい作品です。しかし、ブートストラップのコンテナの幅は1170ピクセルです。コンテナの幅を1170ピクセルに保ち、divを中心に置くことを期待していましたか? – imvain2

-1

を見ることができ、私は enter image description here

を何をしたいのかに画像を追加配置するには、幅10を与える必要があります子がコンテナ内の中央に配置されるためには0%。

.myDiv{ 
     background:#FFF; 
     position: absolute; 
     top:0; 
     z-index:1; 
     width:100%;  
} 
0

これを試してみて、VWを修正します(ビューポートの幅)を選択します。

.myDiv{ 
     position: absolute; 
     background:#fff; 
     z-index:1; 
     width:50vw; 
     left:25vw; 
} 

http://codepen.io/nikmahes/pen/GZxYpB

+0

ありがとうございますが、プロジェクトはクロスブラウザーでなければなりません。つまり、9 +以上:) –

0

あなた.myDivは、これらのプロパティを追加し、いくつかの変更を必要とします。

left: 0; 
top: 0; 
right: 0; 

、そのは非常によくしかし、作業codepen .myDiv .container

関連する問題