【发布时间】:2021-09-21 10:14:11
【问题描述】:
我只想在 second 和 third 下拉列表的顶部放置一条边框线。 我还是达不到。 CLICK HERE
const Select = styled.select`
width: 100%;
min-width: 0px;
outline: 2px solid transparent;
outline-offset: 2px;
position: relative;
appearance: none;
background: inherit;
padding-inline-start: 3rem;
padding-inline-end: 2rem;
height: 3.2rem;
&:nth-child(1),
:nth-child(3) {
border: none;
}
border: 1px solid;
border-left: none;
border-right: none;
border-color: #cecece;
`;
【问题讨论】:
标签: css reactjs styled-components