Jump to content
  • 0

Обтекание изображением


Joseph Jevelin
 Share

Question

Необходимо выполнить такую задачу:

picms.jpg

Причём, чтобы при загрузке картинки (когда её нет) текст не передвигался в левую часть, а оставался неподвижным справа. А дополнительные данные были внизу правого блока. Подскажите, куда копать?

На данный момент, стабильно работающее решение (кривое и без блока доп. данных):

#test {
    background-color: grey;
    margin: 15px 0;
}
    #test .image {
        float: left;
        margin-right: 15px;
        width: 300px; /*чтобы текст не передвигался*/
        height: 150px;
    }
        #test .image img {
            width: 300px; /*уменьшение изображения*/
            height: 150px;
        }
    #test .wrapper {
        padding: 10px 15px 10px 0;
        height: 130px; /*чтобы фон справа всегда был равен высоте изображения*/
    }
        #test .wrapper .title {
            margin-bottom: 15px;
        }

Edited by Joseph Jevelin
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

hedgehog, благодарю)

http://jsfiddle.net/7yWh8/3/

#test {
background-color: grey;
overflow: hidden;
position: relative;
}
#test img {
float: left;
width: 300px;
height: 150px;
}
#test .wrapper {
margin-left: 315px;
}
#test .wrapper .top {
margin-bottom: 15px;
}
#test .wrapper .bottom {
position: absolute;
bottom: 0;
}

Edited by Joseph Jevelin
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy