문제

I want this :

enter image description here

But I get this :

enter image description here

Using this to style the containing div :

.option {
    display:inline-block;
    width:100%;
    white-space:nowrap;
    overflow:hidden;
    margin:10%;
}

The rest is nothing here : http://jsfiddle.net/n2LtN/

What is missing?

도움이 되었습니까?

해결책

I fixed it by using display:inline-block instead of display:inline, without floating :

span, input[type="checkbox"] {
    display:inline-block;
    *display:inline; /*That's for IE*/
    *zoom:1; /*That's for IE*/
    width:auto;
}

See the working fiddle.

다른 팁

Remove float:left from span, input[type="checkbox"]

You should read up on how float works.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top