输入[type ="image"]不会让步

joe*_*joe 3 css input

我尝试使按钮向下移动,边距,填充,顶部与其他输入和标签处于同一水平,但它不会让步.

HTML代码:见图片在此输入图像描述

   input[type="image"] .button-update-cart{
top:100px;
}
Run Code Online (Sandbox Code Playgroud)

在表单上,​​图像不在适当位置,例如:请参阅此图片 在此输入图像描述

编辑

.page-cart .cart-totals .promo-code .field .button-update-cart{
position:relative;
}

.page-cart .cart-totals .promo-code .field input[type="image"]
{
top:100px;

}
Run Code Online (Sandbox Code Playgroud)

它不起作用:(

任何见解将不胜感激!

Pek*_*ica 5

你需要给元素position: relativetop任何效果.