【发布时间】:2014-05-03 18:30:00
【问题描述】:
表格:http://www.pawsingoodcare.com/contact-us Joomla 2.5.19,Yootheme Nano。
表单按照客户想要的方式设置和工作 - 有一个例外:在智能手机大小的视口上查看时表单中断。
我已经能够使用主题中内置的 custom.css 来编辑表单的其他部分。示例:
h3 { font-size: 18px; line-height: 18px; display:none;}
我什至可以通过使用来操纵表单宽度
#system .item > *:last-child {
margin-bottom: 0;
width: 100%;
}
但是,我尝试过使用媒体查询示例:
@media only screen
and (min-width : 321px) {
width:50%;
min-width:200px;
}
问:如何让表单响应式?
【问题讨论】: