hkrlys
hkrlys

Reputation: 441

Input with bottom border only looks weird on mobile

Trying to get only bottom border on mobile and get some strange line instead on mobile browswer: enter image description here

Expecting a straight line(works on the mac not on the iPhone). CSS is

  outline:0 !important;
  outline-width: 0;
  border:none;
  border-width: 0px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: rgb(54,71,112);

Upvotes: 1

Views: 726

Answers (1)

hkrlys
hkrlys

Reputation: 441

On mobile I solved this only with :

  border-radius: 0;

Upvotes: 4

Related Questions