Text floating in block next to image

前端 未结 5 1390
余生分开走
余生分开走 2020-12-08 20:03

I would like to achieve the following placement:

Two different texts (in block) floating / inline next to image. (Everything inside div).

I have been trying

5条回答
  •  天命终不由人
    2020-12-08 20:14

    .content {
        width: 400px;
        border: 4px solid red;
        padding: 20px;
        overflow: hidden;
    }
    
    .content img {
        margin-right: 15px;
        float: left;
    }
    
    .content h3,
    .content p{
        margin-left: 15px;
        display: block;
        margin: 2px 0 0 0;
    }

    Title

    Some Description

提交回复
热议问题