-3

I use React and Bootstrap 4. How do I hide the element in the mobile version?

<Container fluid>
    <Row>
        <Col sm={12} md={3} hidden-xs-down>
    </Row>
</Container>

does not work.

4

2 回答 2

1

在您的 JavaScript/jQuery 代码中,添加如下一行:

if ($(window).width() < 768) {  
    $(.your-class-name).hide();
}

768 适用于所有设备,如果您需要为特定设备(iPhone)添加,请使用 device width

于 2017-11-06T13:28:49.973 回答
0

您的意思是 Bootstrap 4,而不是 5。使用响应式实用程序

于 2017-11-06T11:43:15.740 回答