Background position SVG search icon in input bar (possible bug?)

Tazmo
input {
    border-radius: 5px;
    border: none;
    font: normal 13px "Trebuchet MS";
    padding: 0 0 0 30px;
    width: 220px;
    height: 30px;
    margin: 0 auto;
    display: block;
    background-color: #ccc;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250.313 250.313" width="512" height="512" enable-background="new 0 0 250.313 250.313"><path d="M244.186 214.604l-54.379-54.378c-.289-.289-.628-.491-.93-.76 10.7-16.231 16.945-35.66 16.945-56.554 0-56.837-46.075-102.912-102.911-102.912s-102.911 46.075-102.911 102.911c0 56.835 46.074 102.911 102.91 102.911 20.895 0 40.323-6.245 56.554-16.945.269.301.47.64.759.929l54.38 54.38c8.169 8.168 21.413 8.168 29.583 0 8.168-8.169 8.168-21.413 0-29.582zm-141.275-44.458c-37.134 0-67.236-30.102-67.236-67.235 0-37.134 30.103-67.236 67.236-67.236 37.132 0 67.235 30.103 67.235 67.236s-30.103 67.235-67.235 67.235z" fill="#475250" fill-rule="evenodd" clip-rule="evenodd"/></svg>');
    background-size: 19px;
    background-position: center 10px;
    background-repeat: no-repeat;
}

This code should display a input bar with the search icon to 10px from the left and centered vertically, instead it's in the center of the bar and offset vertically. When I change:

    background-position: center 10px;

to:

    background-position: center left;

It does what I want it to but is missing the 10px padding to the left. Any clue as to what's going on here? I just can't get this working properly.

Marco Hengstenberg

background-position: 10px center should do it for you.

using center and left is using keywords only, which the browser somehow is able to get right because he can tell that left is not meant as a vertical unit.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

SVG sprite icon background position appears off in newer version of Chrome

From Dev

Is it possible to change the vertical position of cancel button in the search bar?

From Dev

Change the search icon in the action bar

From Dev

Search icon not appear in action bar

From Dev

Remove Search icon from the Search Bar:Winrt

From Dev

Possible input padding bug in Firefox

From Dev

Change default search icon position in search view

From Dev

how to append an icon to an input search?

From Dev

Using svg icon as background of a div container

From Dev

Add search icon on action bar android

From Dev

Failing to Display Search Icon In Action Bar

From Dev

Android : Search Icon not showing on Action Bar

From Dev

Android Search icon not showing up on Action Bar

From Dev

Add a Bookmark icon to Firefox search bar

From Dev

Android : Search Icon not showing on Action Bar

From Dev

How is it possible to change the icon on the title bar?

From Dev

How to embed SVG image icon in input tag?

From Dev

How to embed SVG image icon in input tag?

From Dev

SVG gradient as polylines stroke background with absolute position

From Dev

Bootstrap search bar with both clear x and a search icon add on

From Dev

Search bar text getting covered due to search icon

From Dev

Changing the position of a search bar when it is clicked

From Dev

how to position a search bar in html/css

From Dev

UISearchController Search Bar Position Drops 64 points

From Dev

cant get the wordpress search bar on the right position

From Dev

Changing the position of a search bar when it is clicked

From Dev

Position search bar at the right side of div and centered

From Dev

Add icon inside a search input tag?

From Dev

polymer search input text from icon

Related Related

  1. 1

    SVG sprite icon background position appears off in newer version of Chrome

  2. 2

    Is it possible to change the vertical position of cancel button in the search bar?

  3. 3

    Change the search icon in the action bar

  4. 4

    Search icon not appear in action bar

  5. 5

    Remove Search icon from the Search Bar:Winrt

  6. 6

    Possible input padding bug in Firefox

  7. 7

    Change default search icon position in search view

  8. 8

    how to append an icon to an input search?

  9. 9

    Using svg icon as background of a div container

  10. 10

    Add search icon on action bar android

  11. 11

    Failing to Display Search Icon In Action Bar

  12. 12

    Android : Search Icon not showing on Action Bar

  13. 13

    Android Search icon not showing up on Action Bar

  14. 14

    Add a Bookmark icon to Firefox search bar

  15. 15

    Android : Search Icon not showing on Action Bar

  16. 16

    How is it possible to change the icon on the title bar?

  17. 17

    How to embed SVG image icon in input tag?

  18. 18

    How to embed SVG image icon in input tag?

  19. 19

    SVG gradient as polylines stroke background with absolute position

  20. 20

    Bootstrap search bar with both clear x and a search icon add on

  21. 21

    Search bar text getting covered due to search icon

  22. 22

    Changing the position of a search bar when it is clicked

  23. 23

    how to position a search bar in html/css

  24. 24

    UISearchController Search Bar Position Drops 64 points

  25. 25

    cant get the wordpress search bar on the right position

  26. 26

    Changing the position of a search bar when it is clicked

  27. 27

    Position search bar at the right side of div and centered

  28. 28

    Add icon inside a search input tag?

  29. 29

    polymer search input text from icon

HotTag

Archive