消除滚动条

时间:2016-07-11 15:10:21

标签: html css wordpress

这是我试图从http://tubagency.com/

中删除滚动条的网站

我有图片的代码:

.pic {
    position: relative;
    overflow: hidden;
    margin: 10px;
    display: table-cell;
    animation: anima 2s;
    -webkit-animation: anima 2s;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pic-image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    height:67%;
}

看看滚动条是如何显示的,我想要一个静态页面。怎么可能实现?感谢。

1 个答案:

答案 0 :(得分:2)

body {
    overflow:hidden;
}

通过将滚动条添加到body元素,从页面中删除滚动条。如果这就是你在问题中的意思。