I want to add an em-space just after BR tag so as to achieve text-indent effect. But the following STYLE doesn't work on my Chrome.
Or, any other way to achieve text-indent effect after BR tag?
<style>
br::after {
content: " ";
}
</style>
<p>Note:<br>For this selector to work in IE8, a DOCTYPE must be declared, and you must use the old, single-colon CSS2 syntax (:after instead of ::after).</p>
I managed to do this to add an em space just after BR tag!
Another problem is that I also want to keep 1em margin-bottom. The following style ALONE works well.
BUT, if i mixed the two styles into the following, it doesn't work!!!