Css new line

In CSS, there are a few ways to create a new line:

  1. Using the br element: You can use the <br> element to create a new line. For example:
    
    p {
    font-size: 16px;
    margin-bottom: 10px;
    }

p br { display: block; margin-top: 10px; }

This will create a new line after each paragraph.

2. **Using the `white-space` property**: You can use the `white-space` property to specify how whitespace characters (such as spaces, tabs, and line breaks) should be treated. For example:
```css
p {
  font-size: 16px;
  white-space: pre-line;
}

This will preserve the whitespace characters and create a new line where there are line breaks.

  1. Using the margin-bottom property: You can use the margin-bottom property to create a new line by adding a margin to the bottom of an element. For example:

    p {
    font-size: 16px;
    margin-bottom: 20px;
    }

    This will create a new line after each paragraph.

  2. Using the display property: You can use the display property to specify that an element should be displayed on a new line. For example:

    p {
    font-size: 16px;
    display: block;
    }

    This will create a new line after each paragraph.

  3. Using the line-break property: You can use the line-break property to specify where a line break should occur. For example:

    p {
    font-size: 16px;
    line-break: after;
    }

    This will create a new line after each paragraph.

Note that the br element and the white-space property are the most common ways to create a new line in CSS. The other methods are less commonly used, but can be useful in specific situations.