如何强制样式HTML元素?

时间:2015-01-15 17:52:34

标签: html css

我想把我的按钮放在右下角。

以下是我的尝试:

  • 我尝试使用!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;
}

以下是我在检查按钮时看到的内容:

enter image description here

正如您所看到的,我的rightbottom样式被覆盖了,我该如何解决?

2 个答案:

答案 0 :(得分:6)

您忘记使用px%em等测量单位的右下角:

right:400px;
bottom: 17px;

无需使用!important

答案 1 :(得分:-2)

更改您的css选择器
#idname

tag#idname

所以你的选择器就像

button#back-to-top