Vignesh Babu
Vignesh Babu

Reputation: 690

Add Extra space to the Word at right side in HTML Page using javascript

I need to add some after the word based on my custom actions.

For Example in the sentence, "I need to Walk"

I have to insert space only to the word "need" at right side.

I tried using word-space but it applies to entire tag but i want additional space only for a specific word.

How to achieve this javascript or any other method?

Upvotes: 0

Views: 399

Answers (1)

Ray Toal
Ray Toal

Reputation: 88468

If you know the specific word you need to pad out, a relatively simple solution is to place the word you need to add the space to into its own <span> and style the span with an appropriate margin-right.

Upvotes: 1

Related Questions