标签: javascript jquery html css asp.net-mvc
我的文本框有样式:
input[type=text] { width: 300px !important; line-height: 25px; }
我需要更改它,如果容器宽度小于300px,它必须从父容器继承宽度,否则宽度必须是300px。
答案 0 :(得分:4)
input { max-width: 300px; width:100%; line-height: 25px; }