Br tag added to css mail

It sounds like you're trying to add a <br> tag to a CSS email.

In CSS, you can't directly add HTML tags like <br> to a stylesheet. However, there are a few workarounds to achieve a similar effect:

  1. Use the white-space property: You can use the white-space property to create a line break. For example:

    .my-class {
    white-space: pre-line;
    }

    This will preserve the line breaks in the HTML code and create a new line for each <br> tag.

  2. Use the content property: You can use the content property to insert a line break. For example:

    .my-class {
    content: "\A";
    }

    The \A character is a special character that represents a line break.

  3. Use a pseudo-element: You can use a pseudo-element like :after or :before to add a line break. For example:

    
    .my-class {
    position: relative;
    }

.my-class:after { content: ""; display: block; height: 0; visibility: hidden; }

This will add a new line after the element with the class `my-class`.

4. **Use a CSS hack**: Some email clients support a CSS hack to add a line break. For example:
```css
.my-class {
  _display: block;
  _height: 0;
  _visibility: hidden;
}

This hack uses the underscore prefix to target specific email clients.

Remember that CSS email styling can be quite limited, and different email clients may render your styles differently. It's always a good idea to test your email in various email clients to ensure it looks as intended.