views:

63

answers:

2

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

css

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

}
+2  A: 

In your css insert this:

white-space:nowrap;

mkoistinen
+8  A: 

Try:

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

Add that to your CSS.

Kyle Sevenoaks