css끝에 !important 를 붙여보세요.
<div class="aaa_wrap">
<input type="text" class="aaa">
</div>
<style>
.aaa {border-radius:0px !important; width:200px !important;} 또는
.aaa_wrap .aaa {border-radius:0px !important; width:200px !important;} 또는
.aaa_wrap input.aaa {border-radius:0px !important; width:200px !important;}
</style>
2024-11-29 17:05