How to keep text inside the parent?

后端 未结 4 924
终归单人心
终归单人心 2020-12-21 06:52

Lets say take this as an example:



    
        Test
        

        
4条回答
  •  难免孤独
    2020-12-21 07:11

    Warning: Probably, your desired behavior is JoshC's answer, but my answer keeps text inside the parent too (in another way).

    Use overflow different than visible (i.e auto, scroll or hidden).

    On most cases, I recommend auto:

    #container {
        margin:10px;
        width:400px;
        border: 2px solid red;
        overflow: auto;
    }
    

    Demo

提交回复
热议问题