How to give spacing in between words?

 Posted by vishalneeraj-24503 on 12/4/2013 | Category: CSS 3 Interview questions | Views: 3011 | Points: 40
Answer:

With the help of word-spacing css property,we can give spaces in-between words

For example:-

<style type="text/css">

//for Label control

label
{
word-spacing:30px;
}
</style>

//for Textbox control
[type=text]
{
word-spacing:30px;
}


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response