Jump to content
  • 0

Фоматирование текста для разных разрешений


Nanto
 Share

Question

2 answers to this question

Recommended Posts

  • 0

Два решения у меня есть. Это первое, не лишено недостатков.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Обтекание</title>
<style>
.img { float: left; margin: 0 10px 10px 0; }
.text {
width: 900px;
float: left;
}
</style>
</head>
<body>
<img src="images/figure.jpg" alt="" class="img">
<p class="text">Винни-Пух был всегда не прочь немного подкрепиться, в
особенности часов в одиннадцать утра, потому что в это время
завтрак уже давно окончился, а обед еще и не думал начинаться.
И, конечно, он страшно обрадовался, увидев, что Кролик достает
чашки и тарелки.</p>
</body>
</html>

Вот второе, изящнее сделано, но работает не во всех браузерах.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Обтекание</title>
<style>
.img { float: left; margin: 0 10px 10px 0; }
@media screen and (max-width: 1000px) {
.text {
clear: left;
}
}
</style>
</head>
<body>
<img src="images/figure.jpg" alt="" class="img">
<p class="text">Винни-Пух был всегда не прочь немного подкрепиться, в
особенности часов в одиннадцать утра, потому что в это время
завтрак уже давно окончился, а обед еще и не думал начинаться.
И, конечно, он страшно обрадовался, увидев, что Кролик достает
чашки и тарелки.</p>
</body>
</html>

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