2

Are there any HTML Break alternatives for a break?

I don't mean <br>, <wbr> and \n\r, is there an HTML entity, something like &1234; ?

salad_bar_breath
  • 271
  • 4
  • 18
Terrorbite
  • 93
  • 1
  • 3
  • 11
  • 6
    Here is another [question](http://stackoverflow.com/questions/8627902/new-line-in-text-area) which answer's cover HTML entities for line feed – salad_bar_breath Nov 29 '15 at 00:42
  • Why not use styles? Like padding / margins? Couldnt you create a style for a class that creates the amount of space you want between elements, and then apply that class to the elements that should exhibit this "break" ? – Todd Nov 29 '15 at 00:45
  • 1
    @Todd there are certain situations where that kind of solution is feasible, perhaps the OP requires an HTML solution – salad_bar_breath Nov 29 '15 at 00:46
  • Sorry for the duplicate. I cant use padding / margins because I got a Mail from my hosted Server for each cronjob (and there not that much settings). I tried br-Tag and It works perfectly, but sometimes it fails because the line-break comes before the br-Tag is complete. That's why I need a pure HTML solution. :-) – Terrorbite Nov 29 '15 at 01:03

1 Answers1

2

&#10; is line feed. Check this link

Fawzan
  • 4,738
  • 8
  • 41
  • 85