首页 > 解决方案 > Can't change width of React Bootstrap button

问题描述

Can someone tell me how to change the width of my React bootstrap button?

I am just playing around with it

I've imported the Button component from react-bootstrap which I've added

import {Button, ButtonGroup } from 'react-bootstrap';

The button seems to have a max width of 100. How can I increase the width of the button to 200 for example?

<Button
    class="btn btn-outline-primary mr-xl-5 w-100"
    ...
>{ctrl.label}</Button>

标签: react-bootstrap

解决方案


推荐阅读