About 36,000,000 results
Open links in new tab
  1. html - Remove spacing between <p> - Stack Overflow

    Aug 23, 2013 · If you want to remove the space between the lines of text themselves, then you need to put the text into the same paragraph, and adjust the line height.

    Missing:

    • Speech

    Must include:

  2. How To Eliminate Space Between Lines in HTML? - GeeksforGeeks

    Sep 6, 2024 · To remove space between inline-block elements in CSS, ensure no whitespace or line breaks exist in HTML between elements. Alternatively, set the font-size of the parent to 0 and reset for elements, or apply a negative margin to elements.

    Missing:

    • Speech

    Must include:

  3. [HTML] - How to eliminate space between lines in HTML

    You can replace p with the element that you want to remove the space between lines. Alternatively, you can use the CSS property line-height to adjust the space between lines. For example: line-height: 1; This will set the line-height of all <p> elements to 1, which will reduce the space between lines. You can adjust the value to suit your needs.

    Missing:

    • Speech

    Must include:

  4. HTML Paragraphs - W3Schools

    HTML Line Breaks. The HTML <br> element defines a line break. Use <br> if you want a line break (a new line) without starting a new paragraph:

    Missing:

    • Speech

    Must include:

  5. How to Add or Reduce Space Between Lines of Text Using Just HTML

    Nov 20, 2020 · It turns out that’s pretty simple: just use the line-height CSS property and then apply it. I have an example below. Then, you can apply that CSS class to your HTML. Now, the space...

  6. How to Skip a Line in HTML - Delft Stack

    Feb 2, 2024 · The simplest way to skip a line in HTML is using the <p> tag. The <p> tag, a paragraph element, creates paragraphs in HTML. Paragraphs are block-level elements representing a block of text in an HTML document.

    Missing:

    • Speech

    Must include:

  7. css - The best way to skip a line in html? - Stack Overflow

    Dec 23, 2015 · What i want to know is what's the best way to add/skip a line in html? What I mostly use is two <br /> tags, but I know that there is a simpler solution to the problem. Is there a way to skip a line, using css, instead of doing this:

    Missing:

    • Speech

    Must include:

  8. Remove space added by line break in HTML code (with CSS?)

    Nov 19, 2012 · I have some html that looks like this: <span> 398 <span>comments posted in</span> </span> A space is rendered after 398 because there is a line-break in the html. For reasons I won't go into, this line-break cannot be removed. Is there a way to stop a space being rendered there?

    Missing:

    • Speech

    Must include:

  9. remove space between text words and punctuation mark

    Apr 17, 2014 · No need to change your HTML for spans, but a parent element is necessary. /* Float method */ .float { overflow: hidden /* Or any other method to clear float */; } .float span { float: left; } /* Font size method */ .fontsize { font-size: 0; } .fontsize span { font-size: 1rem; }

  10. Remove line break HTML - Stack Overflow

    Aug 10, 2013 · You've got a few options: display: inline-block; JS Fiddle demo. Or: display: inline; JS Fiddle demo. If it's the white-space between the bottom of the first p and the top of the second p that you want to remove: /* top right bottom left */ margin: 0 0 0 0; JS Fiddle demo.

    Missing:

    • Speech

    Must include:

  11. Some results have been removed
Refresh