felipepai Posted May 8, 2015 Report Share Posted May 8, 2015 olá galera quero saber como colocar todos os (*) asterisco de um texto na cor vermelha com css Quote Link to comment Share on other sites More sharing options...
0 wootzor Posted May 8, 2015 Report Share Posted May 8, 2015 Apenas com CSS não sei se é possível, mas com jQuery é possível fazer algo assim: $('body').each(function () { $(this).html($(this).html().replace(/(\*)/g, '<span style="color: red;">$1</span>')); }); Quote Link to comment Share on other sites More sharing options...
Question
felipepai
olá galera quero saber como colocar todos os (*) asterisco de um texto na cor vermelha com css
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.