Kali Charan Rajput
Kali Charan Rajput

Reputation: 12596

Stop word-wrap in html

I don't want word wrap but this is being. I have set width more than text length but this is still breaking so how can I stop word break.

css

.menu{
    float:left;
    width:120px;
    height:34px;
    padding:12px 6px 0 6px;
    color:#cc8d50;

}

Upvotes: 27

Views: 27580

Answers (2)

mkoistinen
mkoistinen

Reputation: 7773

In your css insert this:

white-space:nowrap;

Upvotes: 6

Kyle
Kyle

Reputation: 67184

Try:

.menu{
    white-space: nowrap;
...

Add that to your CSS.

Upvotes: 60

Related Questions