How to fix the height of a
element?

前端 未结 4 1807
庸人自扰
庸人自扰 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:19

    If you want to keep the height of the DIV absolute, regardless of the amount of text inside use the following:

    overflow: hidden;
    

提交回复
热议问题