float puts submit button outside of div

后端 未结 5 1839
天涯浪人
天涯浪人 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:39

    Try this:

    #content:after {
         visibility: hidden;
         display: block;
         font-size: 0;
         content: " ";
         clear: both;
         height: 0;
    }
    

    From http://css-tricks.com/snippets/css/clear-fix/.

提交回复
热议问题