用于修复div的{CSS / SASS方法

时间:2016-08-05 07:01:03

标签: html css3 typescript sass

我希望你能给我一个答案。 在CSS中,属性background-attachment:fixed;看起来真的很花哨,所以我的问题是我可以用来修复"文档中有一些带有文本等的div? 如果没有,如何在Typescript中解决它? 我希望你知道我的意思

//编辑: 好的,我将尝试描述它:使用属性background-attachment:fixed; div的背景是固定的,但不是它的内容,所以会出现视差效果,如下所示:w3schools.com/howto/tryhow_css_parallax_demo.htm并知道我想知道是否有可能对内容如文本等。

1 个答案:

答案 0 :(得分:0)

你能这样试试吗?

<强> HTML

<div class="fixedContainer">
    This is experimental
</div>
<div class="otherContainer"> </div>

这就是你的风格

<强> CSS

<style>
.fixedContainer {
    background-color:#ddd;
    position: fixed;
    padding: 2em;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
}

.otherContainer {
    height:1000px;
    background-color:#bbb;
}

</style>

信用证最初转到:此link和stackoverflow用户aaronk6以及Joseph Marikle的帖子:

this linkthis link分别。