user930026
user930026

Reputation: 1657

How to make bold only 1 line of submit value amongst several lines

I have input submit value in 2 lines. I referred stackoverflow link and was able to get input value in 2 lines. Now i want is to make text bold only for 1 line.

For eg: Input value text is shown as

line 1
line 2

I want to make only line 2 as bold.

Any help is really appreciated.

Upvotes: 0

Views: 70

Answers (1)

Pete
Pete

Reputation: 58422

You can use a button tag instead:

<button name="test">line 1<br /><strong>line 2</strong></button>

Example

Upvotes: 1

Related Questions