別のユーザーからの指示を使用してテキストを垂直方向に中央揃えにすることができましたが、全体を垂直方向に中央揃えにすることができません。テキストを独自のdivに入れると、それができると思いましたが、そうではありませんでした。矢印の横にある段落を中央に配置するにはどうすればよいですか?
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>