html - Replacing <br> within a table, using css -
is there way replace < br > tags within table char or string? can't access table itself, can use css decide how how table being displayed. < br> tags outside table work properly. white-space it's property values doesn't seem work. possible this?
sorry if didn't mention important, i'm new css.
you can change <br>
tag character this:
<style> br { content: ""; } br:after { content: ","; } </style> test <br> test
in example decided display comma.
Comments
Post a Comment