1

Problem with Google Chrome since some day!

enter image description here

I have a little problem. I use an input-field with type="date". Since some day it appers a cross after filling the inputform. This is only at Chrome. How can I suppress the displaying of these cross?

Adarsh H S
  • 1,208
  • 6
  • 21
  • 42

2 Answers2

1

May be this answer can help you

as it will deal with the deleting the cross in chrome browser

How to remove the blue cross on datetime-local HTML input in Chrome 27?

Community
  • 1
  • 1
Sigar Dave
  • 2,598
  • 1
  • 20
  • 42
  • input::-webkit-outer-spin-button, /* Removes arrows */ input::-webkit-inner-spin-button, /* Removes arrows */ input::-webkit-clear-button { /* Removes blue cross */ -webkit-appearance: none; margin: 0; } – user2477145 Jun 12 '13 at 06:59
0

try to add required attribute.

int32_t
  • 5,774
  • 1
  • 22
  • 20