Tagged Questions
The line-break tag has no wiki summary.
37
votes
8answers
34k views
Can you target <br /> with css?
wondering if anyone knows if it is possible to target line-break tag with css. Basically all I want to do is have a 1px dashed line every-time there is a line-break. I am customising a site with my ...
6
votes
2answers
2k views
Should carriage return \r and new line \n always be used together? \r\n
In JavaScript this was a cross-browser compatibility issue, so both were used, but there are numerous instances in different languages where I see both printed out together as \r\n. Is this still the ...
5
votes
1answer
256 views
CSS word wrap / line break on underscores in addition to whitespace and hyphens
I have a bunch of really long file names that cause my HTML formatting to overflow. All of these filenames use underscores instead of spaces and would break/wrap easily if they were spaces. Like ...
5
votes
5answers
3k views
When do I use PHP_EOL instead of \n and vice-versa ? Ajax/Jquery client problem
I have a php parser that split a given string by line-breaks, doing something like this:
$lines = explode(PHP_EOL,$content);
The parser works fine when working on server side. However, when I pass ...
2
votes
1answer
132 views
Can JQuery detect the last element on a line before it wraps on the second line?
<style>
.ms_menu ul{list-style:none;}
.ms_menu ul li{float:left; padding:5px; border-right:1px solid #000000;}
.ms_menu ul li:last-of-type{border-right:none;}
</style>
...
2
votes
2answers
43 views
How to contain text from breaking elements?
This is a very simple question, but embarrassingly enough I am not sure how to implement this :\
I have div elements with text boxes inside them for users to write comments,replies etc... Very ...
2
votes
3answers
89 views
How do i remove these <br> tags
first question here :)
I'm currently experimenting with my first WordPress theme over at http://ahrengot.com/, but i've come to learn that WP has the odd behaviour of throwing random line breaks into ...
1
vote
3answers
50 views
javascript: stripping line breaks on an input string
I've seen lots of questions about preserving line breaks in textarea inputs, but I need the opposite. I suspect the answer to my question is not going to be a good one, but...
I'm working with a ...
1
vote
1answer
98 views
Contact Form 7 - Mass Checkboxes displayed by line break separation within notification emails
Hello,
I have a question about the checkbox value items that I receive in my mail after someone fills in my contact from 7.
If someone has checked these three boxes in the form:
CHECKBOX1
CHECKBOX2
...
1
vote
3answers
103 views
CSS property to make text wrappable at any place
Is there a CSS property that tells the browser to word-wrap at any position, not only at word boundaries?
My current issue is this. I am faced with HTML similar to this: (I cannot change the HTML, ...
1
vote
2answers
60 views
How to wrap text in table cell at hyphen?
I found the text-wrap and overflow-wrap CSS 3 properties, but they don't seem to do anything.
http://www.w3schools.com/cssref/css3_pr_text-wrap.asp
How to wrap text at hyphens within a table cell? ...
1
vote
3answers
134 views
Hide text after first line break? (not <br />, but wrapped by the browser)
Is it somehow possible to know where the text is split and a new line is started and hide everything after the first line, either with css or with js?
So if I have the following text displayed in the ...
1
vote
2answers
248 views
Unicode regexp to match line-breaks?
I have this form from where I want to submit data to a database. The data is UTF8. I am having trouble with matching line breaks. The pattern I am using is something like this:
~^[\p{L}\p{M}\p{N} ...
1
vote
4answers
1k views
How to force a line break in a loooooong word in a DIV?
Okay, this is really confusing me. I have some content inside of a div like so:
<div style="background-color: green; width: 200px; height: 300px;">
...
1
vote
4answers
2k views
PHP REGEX - text to array by preg_split at line break
EDITED:
need help on split Array
array example:
array (
[0] =>
:some normal text
:some long text here, and so on... sometimes
i'm breaking down ...
0
votes
1answer
48 views
json request - no line breaks in div
i save data in a data base with json/jquery/ajax.
When i load the data in a textarea i get the result which i want to have.
But when i load the data in a DIV, then there are no line breaks.
I tested ...
0
votes
2answers
83 views
Is there a maximum line-length in a textfile without a linebreak?
Trying to use StreamReader or similar from C# to read and write VERY LONG lines without the linebreak.
As I understand it, linebreak is still just 2 bytes (CR+LF) in a long bytearray called a file. ...
0
votes
2answers
263 views
Why does CKeditor add line breaks and paragraph before initial text?
I have a web page with a CKEditor on it and my issue is that when I view source or post to the server, I am getting extra spaces and line breaks before the initial text that I type in the textarea.
...
0
votes
3answers
269 views
jQuery: keyup(): Update div with content from text area… line breaks?
I have posted a working version here: http://jsfiddle.net/JV2qW/2/
I have a textarea that updates (on keyup()) a div with the text that is being entered. Everything is working as it should, except ...
0
votes
1answer
101 views
Line break or something after footer in IE
i have a site: www.onreg.dk. As you can see, there is a footer div, but some kind of line break comes after it in IE 7/8 Quirks mode. I have no idea why, but i know this:
If i open developer tools ...
0
votes
1answer
264 views
XHTML Setting line-breaks for multiple anchor tags with multiple images inside
Considering this sample code:
<div style="width:300px;">
<a href="#">
<img src="images/bracket_open.png"/>
<img src="images/1.png"/>
<img ...
0
votes
4answers
775 views
Line Break within echo in a while loop
Quick question, again, I'm sure this is ridiculously simple but I don't see what I'm doing wrong!
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo "<a ...
0
votes
2answers
290 views
I want to use <pre></pre> to keep the format of input text, but the displayed text crosses the boundary of its parental tag<div></div>. How to solve this problem?
The text in <pre></pre> steps beyond the boundary of its parental <div></div>. How to solve this problem?
It is said that the line lengths in the preformatted text can be ...
0
votes
4answers
541 views
HTML/CSS - Paragraphs display line breaks from the source code
For some reason my paragraphs are displaying line breaks when there is no <br/> tag being used! So if I type content into the HTML and hit return a few times it gets formatted that way.
How can ...