search

Home  >  Q&A  >  body text

css - 在iphone浏览器中,当input type 为 date时,text-align:right 属性不生效。

/* 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中,该属性不生效,依然保持左对齐。


请问要如何解决?

黄舟黄舟2785 days ago1180

reply all(2)I'll reply

  • 黄舟

    黄舟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.

    reply
    0
  • ringa_lee

    ringa_lee2017-04-17 13:23:54

    direction: rtl; Try this.

    reply
    0
  • Cancelreply