我设法使用来自另一个用户的指令并将文本垂直居中,但它不允许我将整个内容垂直居中。我想如果我将文本放在它自己的 div 中,它会这样做,但它没有。如何在箭头旁边居中 PARAGRAPH?
垂直对齐 CSS 非常混乱......
CSS
#arrow {
width:33px;
height:25px;
background-image:url('http://i.imgur.com/26tbf.png');
margin-left:55px;
background-position:0 50%;
float:left;
height:100%;
background-repeat:no-repeat;
}
#bulletwrap {
border:1px solid black;
width:325px;
height:75px;
}
#text {
background-position:0 50%;
line-height:75px;
}
HTML
<div id="bulletwrap"><div id="arrow"></div><div id="text">This is some longer text that needs to be centered next to the arrow grouped together</div></div>