我想把我的按钮放在右下角。
以下是我的尝试:
!important
,但没有效果CSS:
#back-to-top {
position: fixed !important;
right:400 !important;
bottom: 17!important;
color: black;
border: #90bc26 solid 1px;
border-radius: 5px;
padding: 5px;
}
以下是我在检查按钮时看到的内容:
正如您所看到的,我的right
和bottom
样式被覆盖了,我该如何解决?
答案 0 :(得分:6)
您忘记使用px
,%
或em
等测量单位的右下角:
right:400px;
bottom: 17px;
无需使用!important
。
答案 1 :(得分:-2)
从
更改您的css选择器#idname
到
tag#idname
所以你的选择器就像
button#back-to-top