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

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -