如何对齐旁边的图像,标题和文字?

时间:2014-03-06 21:52:57

标签: html css css3

我想将左侧的图片与其旁边的<h><p>文字对齐,如下所示:

enter image description here

这样做的最佳方式是什么,以便它也能最好地用于响应式设计?

http://jsfiddle.net/kfV7F/

1 个答案:

答案 0 :(得分:3)

img {
    width:200px;
    height:200px border:1px solid;
    vertical-align:middle;
    float:left;
}
span:after {
    clear:both;
    content:"";
    display:block;
}

jsfiddle

文字之后,您必须清除float