assume that we have declared a property named height="" which has a certain value, let say 200px. I was wondering that is there a way that we could override this property using media queries in css?as far as I know, the inline properties has higher priority than the css styles.
this is the example code for such condition :
@media (max-width:480px){
custom-element{
height: 50px;
}
}
<body>
<custom-element height="200px">
</custom-element>
</body>
thank you in advance.