我正试图将Twitter引导程序3模式固定在正文的右上角。
到目前为止,我已经尝试过:
有问题的CSS:
#confirm {
position: fixed !important;
width: 120px !important;
right: 10px !important;
//margin-left: 80% !important;
//-webkit-transform: translate(600px, 0px);
}
答案 0 :(得分:7)
Twitter Bootstrap默认情况下将left: 1%;
和right: 1%;
应用于模式框。
首先,您需要将left
属性重置为auto
。然后,您可以为元素添加right
属性。
#confirm {
width: 120px;
position: fixed;
left: auto; /* <-- Reset the default left value */
right: 10px;
}
<强> WORKING DEMO 强>