If you ever wanted to display a long button text in multiple lines CSS comes to assist you. You can achieve the effect using following style.
#button_id {
white-space: normal;
width: 100px;
height: 80px;
}
Make sure you have set the with and height for the button .
cheers
Samitha
#button_id {
white-space: normal;
width: 100px;
height: 80px;
}
Make sure you have set the with and height for the button .
cheers
Samitha
No comments:
Post a Comment