0

我在 React 中有一个表单,使用react-strap并呈现如下图所示的输入,我想通过多种使用 CSS 的方式隐藏输入末尾的联系人图标,但不起作用。

在此处输入图像描述

这是代码:

<Form>
    <FormGroup row>
       <Label className="col-4 font-weight-bold">
         Name on Card
       </Label>
       <Col>
         <Input type="text" name="card" autoComplete="off" />
       </Col>
    </FormGroup>
</Form>
4

1 回答 1

0

使用autoComplete={0},这在 Google Chrome、Safari 和 Mozilla 中对我有用

于 2018-09-08T14:13:41.513 回答