对于django中基于数字的字段,增量器窗口小部件位于每个文本框的右侧。我该如何删除?
答案 0 :(得分:0)
显然它是一个html5的东西,被称为微调器。它可以用这个css来解决:
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}