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 si开发者_运维百科de.
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?
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
.
精彩评论