调整宽度没有任何作用

时间:2017-08-29 01:10:41

标签: html css

我想将类important放在页面的右上角,并使用垂直滚动条来控制溢出。更改important的宽度不会执行任何操作,因此滚动条当前正在显示,但没有任何操作,因为没有溢出。为什么会这样?

<div class="important">
    <p>It's important to have some knowledge of CSS positioning. But
    you will <em>not</em> be an expert after just a few simple examples!</p>
</div>

div.important {
position: absolute;
top: 0;
right: 0;
overflow-y: scroll;
width: 50 px;
}

2 个答案:

答案 0 :(得分:1)

删除width: 50px

的空格

答案 1 :(得分:0)

overflow-y: scroll;将始终显示滚动条,即使没有可滚动的内容也是如此。如果有溢出,将其更改为overflow-y: auto;应确保只有滚动条。