私はこれをfiddleにしました。ここでは、ボックスを中央(または上部または下部)に垂直に "Wholebox"クラスに合わせる必要があります。問題は、私がインターネット上のソリューションを試していて、何も働かなかったことです。私が持っている設定といくつかのプロパティが他のものよりも優先されているので、私が望む結果は得られません。だから私は私の特定のケースで尋ねることにしました。div内のdivを垂直に整列
.daliBoxSortableContainer {
width: 100%;
height: 236px;
min-height: 35px;
text-align: center;
line-height: 100%;
box-sizing: border-box;
position: relative;
padding: 0px;
border-color: rgb(255, 255, 255);
border-width: 0px;
border-style: solid;
opacity: 1;
background-color: red
}
.wholebox {
display: inline-block;
position: relative;
width: 25%;
height: auto;
vertical-align: middle;
touch-action: none;
cursor: inherit;
}
.selectedBox {
background-color: #fff6ec;
border: 1px dashed black;
color: #555;
}
.helpersResizable {
border: 1px solid #777;
background-color: white;
z-index: 1;
position: absolute;
width: 15px;
height: 15px;
cursor: move;
}
.boxStyle {
width: 100%;
height: 100%;
position: relative;
word-wrap: break-word;
overflow: visible;
visibility: visible;
padding: 0px;
background-color: rgb(255, 255, 255);
border-width: 0px;
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: 0px;
opacity: 1;
}
.showOverlay {
width: 100%;
background: black;
top: 0;
bottom: 0;
position: absolute;
opacity: 0.4;
}
<div class="daliBoxSortableContainer">
<div style="display: table; width: 100%; height: 100%;">
<div style="width: 100%; height: 100%; display: table-cell; vertical-align: top;">
<div style="width: 100%; height: 100%; position: relative;">
<div class="wholebox selectedBox">
<div id="resizableContainer" style="visibility: visible;">
<div style="position: absolute; top: -2px; left: -2px; width: 100%; height: 100%; box-sizing: content-box;"></div>
<div>
<div class="helpersResizable" style="left: -7.5px; top: -7.5px;"></div>
<div class="helpersResizable" style="right: -7.5px; top: -7.5px;"></div>
<div class="helpersResizable" style="left: -7.5px; bottom: -7.5px;"></div>
<div class="helpersResizable" style="right: -7.5px; bottom: -7.5px;"></div>
</div>
</div>
<div class="boxStyle">
<div style="width: 100%; height: 100%;">
<div style="width: 100%; margin: 0px; height: 100%;">
<img src="http://nemanjakovacevic.net/wp-content/uploads/2013/07/placeholder.png" style="width: 100%; height: 100%;">
</div>
</div>
</div>
<div class="showOverlay" style="visibility: hidden;"></div>
</div>
</div>
</div>
</div>
</div>
とき絶対また、それは、.wholebox
は、構成に応じて、position:absolute
または相対を持つことができることに注意することが重要だ、周りのプロパティが変更されますので、上部と左にドラッグすることができます。高さは、構成に応じて自動または固定にすることもできます。
#resizableContainer
と.showOverlay
divのは、私が考えて無視することができますが、私は誰もがCSSについて良い本を知っている場合念のためにそのプロパティのいくつかは、ちなみに作業
から私が望む結果を妨げているそれらを含みますすべてのプロパティ間の互換性の問題は、それはかなり高く評価されるだろう。
事前に感謝します。
を試してみてください – Sojtin
http://howtocenterincss.com/ – pawel
@pawelこのページはすばらしいですよね! –