をこんにちは、あなたがこのようなとしてCSSのプロパティの一部を置き換えることが
のCss
.parent{
border: 1px solid red;
padding: 2px;
width: 500px;
text-align: center;
display: table;
}
.parent p.p1{
font-size: 20px;
}
.left{
display: table-cell;
vertical-align: middle;
border: 1px solid green;
width: 30%;
}
.right{
display: table-cell;
border: 1px solid blue;
width: 69%;
}
HTML
<div class="parent">
<div class="left">
<p class="p1">Vertically</p>
<p>Center me to the box on my right, please</p>
</div>
<div class="right">
<p>I can be</p>
<p>variable</p>
<p>number</p>
<p>of</p>
<p>lines</p>
<p>and I</p>
<p>determine</p>
<p>the height</p>
<p>of everything</p>
<p>here</p>
</div>
</div>
Live Demo here http://jsfiddle.net/rohitazad/McVAE/73/