Keep text from wrapping around floated image

僤鯓⒐⒋嵵緔 提交于 2019-12-02 07:57:57

FIXED ANSWER

Just float the text as well. :)

http://jsfiddle.net/Hs7pN/

#image
{
    background-color: #09C;
    float: left;
    height: 200px;
    width: 200px;
}

#text
{
    float: left;
    width: 400px;
}
p
{
width:1000px;
display: table-row;       
}

Try setting fixed width if possible and Justify your text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!