The Sheek Geek
The Sheek Geek

Reputation: 4216

Styling textbox text

Here is what I want to do:

I have a disabled textbox that gets populated, ';' delimited, by filling in some other textboxes. The values appear in the disabled box with this format:

[Abbreviation] [value]; [Abbreviation] [value]; [Abbreviation] [value] ...etc

A requirement of my project is to make the [value] bold so that it looks like this:

[Abbreviation] [value]; [Abbreviation] [value]; [Abbreviation] [value] ...etc

I haven't had a lot of luck with CSS or doing research to see if this is even possible. Is this possible? And if so, how?

Upvotes: 0

Views: 377

Answers (1)

CBRRacer
CBRRacer

Reputation: 4659

you can format the text in a text box but you can't format partial text it's all or nothing so you could do

[Abbreviation] [value]; [Abbreviation] [value]; [Abbreviation] [value] ...etc

or

[Abbreviation] [value]; [Abbreviation] [value]; [Abbreviation] [value] ...etc

but not

[Abbreviation] [value]; [Abbreviation] [value]; [Abbreviation] [value] ...etc

Upvotes: 1

Related Questions