input框,想隐藏上边栏,如何做到?
发布于 6 年前 作者 msun 1504 次浏览 来自 官方Issues

如代码所示,代码中border相关的设置,都设置了,但是上边栏还是显示在那边。

.input_style {

width: 700rpx;

align-items: center;

margin-top: 100rpx;

border-top-width: 0;

border-top: none;

list-style: none;

outline: none;

border: none;

border-width: 0;

}

1 回复

.input_style::after{

border:0;

}

回到顶部