How to fix the height of a
element?

前端 未结 4 1753
庸人自扰
庸人自扰 2021-02-02 07:31

I\'ve defined my div\'s height in a stylesheet:

.topbar{
  width:100%;
  height:70px;
  background-color:#475;
}

But as soon as text is entered

4条回答
  •  时光说笑
    2021-02-02 08:06

    change the div to display block

    .topbar{
        display:block;
        width:100%;
        height:70px;
        background-color:#475;
        overflow:scroll;
        }
    

    i made a jsfiddle example here please check

    http://jsfiddle.net/TgPRM/

提交回复
热议问题