Jump to content
  • 0

Выравнивание фона по окончанию отдельной строки


Olegs2
 Share

Question

Есть абзац, его код:


<div style="background-color:red; position:fixed;">
111111111111<br>
22222
</div>

не могу выровнять в нем фон по окончанию каждой строки, на данный момент он выравнивается по окончанию самой длинной строки в абзаце.

Подскажите как решить задачу, спасибо.

Edited by Olegs2
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Не совсем то что нужно. Если добавить текст то видно что происходит наложение и если добавить padding то он действует лишь на второе предложение.


<div style="position:fixed;">
<span style="background-color:red; padding: 3px;">pppppMyyyy<br>
JJJMmM</span>
</div>????

Edited by Olegs2
Link to comment
Share on other sites

  • 0

Через JS можно так:

CSS



p {
color: #000;
}
p span {
background: #F00;
padding: 5px;
}

JS



<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script>
$(document).ready(function(){
$('p').inlinebackgrounds();
});
(function($){
$.fn.inlinebackgrounds = function() {
$.each(this, function(i,t) {
var split = $(t).html().split('<br>');
var output = '';
$.each(split, function(i,o){
output += '<span>'+o+'</span>';
if (i < (split.length - 1)) {
output += '<br>';
}
});
$(t).html(output);
});
}
})(jQuery);
</script>

HTML



<p>Строка 1<br>Строка 2 Строка 2<br>Строка 3 Строка 3 Строка 3<br>Строка 4 Строка 4 Строка 4 Строка 4</p>

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