Could someone please tell me if its possible to underline text with a different colour ?
I am designing a website and my client has asked that the white text is underlined in red.
I've not seen this done before but would be grateful if someone could enlighten me.
Thanks in advance
philosopher_poet wrote:
Could someone please tell me if its possible to underline text with a different colour ?
I am designing a website and my client has asked that the white text is underlined in red.
I've not seen this done before but would be grateful if someone could enlighten me.
Thanks in advance
You need to use border-bottom to underline in different color. For example you might have some text like this:
<p>I want some text <span class="green">in this line to be underlined</span> in green.</p>
I would then create a css style like this:
.green {
border-bottom: 2px green solid;
}
This does the work adequately.
Good luck.
North America
Europe, Middle East and Africa
Asia Pacific