How to change width of mui select in react js?
February 22, 2023Hi Friends 👋,
Welcome To aGuideHub!
To change width of mui select in React js, you can use this style style={{ width: '300px' }}
. It will change width of mui select in react js.
Today, I am going to show you, how to change width of mui select in react js.
Installation
Install the following packages to use width of mui select in react js.
npm
npm install @mui/material @emotion/react @emotion/styled
yarn
yarn add @mui/material @emotion/react @emotion/styled
MUI material change width of mui select example.
The below code is an example of a Material UI select. You have to import @mui material
select and use inline style style={{ width: '300px' }}
. It will change the width of mui select.
App.js
import * as React from 'react';
import InputLabel from '@mui/material/InputLabel';
import MenuItem from '@mui/material/MenuItem';
import FormControl from '@mui/material/FormControl';
import Select from '@mui/material/Select';
export default function SelectAutoWidth() {
const [age, setAge] = React.useState('');
const handleChange = (event) => {
setAge(event.target.value);
};
return (
<div>
<FormControl sx={{ m: 1}}>
<InputLabel id="demo-simple-select-autowidth-label">Age</InputLabel>
<Select
labelId="demo-simple-select-autowidth-label"
id="demo-simple-select-autowidth"
value={age}
onChange={handleChange}
autoWidth
label="Age"
style={{ width: '300px' }}
>
<MenuItem value="">
<em>None</em>
</MenuItem>
<MenuItem value={10}>Twenty</MenuItem>
<MenuItem value={21}>Twenty one</MenuItem>
<MenuItem value={22}>Twenty one and a half</MenuItem>
</Select>
</FormControl>
</div>
);
}
In the above code example, I have used the @mui/material
component and changed width of mui select.
Check the output of the above code example.
Here, we are provided code sandbox links for the above program change width of mui select. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍