skip to Main Content

Css – Box component goes over Grid height

Home.jsx <Box component="fieldset" sx={{borderRadius:2, height:"100%"}}> App.jsx <Grid container> <Grid item xs={4} > <Root/> </Grid> <Grid item xs={8} > <BrowserRouter> <Routes> <Route path='/' element={<Home/>}/> </Routes> </BrowserRouter> </Grid> </Grid> I've put "height:100%" in the Box in Home.jsx because otherwise box is really…

VIEW QUESTION

Hide specific fieldset class with css

image <variant-radios id="variant-radios-template--17912133255436__main" class="no-js-hidden" data-section="template--17912133255436__main" data-url="y"> <fieldset class="js product-form__input"> <legend class="form__label">A</legend> </fieldset> <fieldset class="js product-form__input"> <legend class="form__label">B</legend> </fieldset> <fieldset class="js product-form__input"> <legend class="form__label">C</legend> </fieldset> </variant-radios> I want to hide 2 of these 3 fieldset classes via css. F.e. hide "A"…

VIEW QUESTION
Back To Top
Search