float puts submit button outside of div

后端 未结 5 1819
天涯浪人
天涯浪人 2021-01-02 08:34

I am having some trouble with my css, I have a content id and then inside that I have a class that is just padding. When inside the padding class, I have a textarea and a su

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-02 09:33

    You need to trigger the layout of .content-padding or add a clearing element.

    .content-padding {
        padding: 10px;
        overflow:hidden ; /* minds inside and outside floatting elements, fine if no size given */
    }
    

    or a generated clearing element.

    .content-padding:after {
        content:'';
        display:block; /* or whatever else than inline */
       clear:both;
    }
    

    Learn more about floatting elements : http://css-tricks.com/all-about-floats/

提交回复
热议问题