Jump to content
  • 0

Выравнивание текста в блоке по ширине и по левому краю


bigperson
 Share

Question

День добрый форумчане. Суть вопроса.

Есть блок с текстом, блок резиновый. Задача: если ширина блока меньше определённого количества пикселей, то выравнивать текст по левому краю блока, если же больше — по ширине блока.

Можно ли это реализовать на голом html5 + css3 или, только js

Если с js то желательно примерчик или ссылку на мануал.

Спасибо.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Только скриптами, ясное дело.

<div id="someblock">Sometext sometext sometext</div>


var block = document.getElementById("someblock");
block.style.textAlign = block.offsetWidth < 400 ? "left" : "center";

Надо только иметь в виду, что offsetWidth — это ширина всей видимой области, то есть включает паддинги и границы.

Link to comment
Share on other sites

  • 0

$("#block").css("text-align", $("#block").width() < 400 ? "left" : "justify");

Так, пожалуй.

В предыдущем примере тоже justify, кстати. Попутал я.

И да, здесь width — это именно width, без добавок отступов.

Edited by Helis
Link to comment
Share on other sites

  • 0

повесить событие на изменение размера окна браузера и проверять ширину блока при каждом изменении:


$(window).resize(function() {
$("#someblock").css("text-align", $("#someblock").width() <= 400 ? "left" : "justify");
});

Edited by wwt
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