/* 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中,该属性不生效,依然保持左对齐。
请问要如何解决?
黄舟2017-04-17 13:23:54
Note that some browsers may not support input type="date". You'd better add a class or other attributes to set it.