/* css */ input[type="date"]{text-align:right;} //html <input type="date" value="2015-05-06">
在input type为date的情况下,PC端和Android设备的浏览器中,text-align:right属性是生效的,唯独在iPhone的Safari中,该属性不生效,依然保持左对齐。
请问要如何解决?
人生最曼妙的风景,竟是内心的淡定与从容!
Note that some browsers may not support input type="date". You'd better add a class or other attributes to set it.
direction: rtl; Try this.
direction: rtl;
Note that some browsers may not support input type="date". You'd better add a class or other attributes to set it.
direction: rtl;
Try this.