CSS Move Icon to Right of Input Field

michaelmcgurk

How do I move the magnifying glass to the right hand side in my input field?

Here's my Fiddle.

HTML:

<div class="search">
  <span class="fa fa-search"></span>
  <input placeholder="Search term">
</div>

CSS:

@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");
body { margin: 30px; }
.search {
  position: relative;
  color: #aaa;
  font-size: 16px;
}

.search input {
  width: 250px;
  height: 32px;

  background: #fcfcfc;
  border: 1px solid #aaa;
  border-radius: 5px;
  box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset;
}

.search input { text-indent: 32px;}
.search .fa-search { 
  position: absolute;
  top: 10px;
  left: 10px;
}
pavel

You set left: 10px to an icon too. Set there more pixels from left side, or directly pixels from right.

.search .fa-search {left: 230px;}

http://jsfiddle.net/xhjLyf1k/1/

Setting right position instead of the left one (to prevent resizing of input field):

.search {display: inline-block} /* prevent 100% width */
.search .fa-search {left: auto; right: 10px;}

http://jsfiddle.net/xhjLyf1k/2/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to align material icon on right of a input field?

From Dev

How to move the arrow to the right in the input field?

From Dev

How to move cursor small bit from left to right in a Input field

From Dev

Android SearchView - Move icon to right (without ActionBar)

From Dev

Move icon to right side of text in a QCheckBox

From Dev

How to move a field left and right without user input, using ints in xna

From Dev

Move table <tfoot> to the right with CSS

From Dev

Move CSS Border to Right on Click

From Dev

Move CSS menu to right of screen?

From Dev

Move CSS menu to right of screen?

From Dev

Slide input field in from right?

From Dev

How to move text in a input field?

From Dev

How to move text in a input field?

From Dev

Put icon inside input element in a form and move the icon

From Dev

CSS Input field not responsive

From Dev

CSS Positioning an icon at the top right side of the image

From Dev

Select2 - How to move the close icon to the right of the selected item

From Dev

How to move SearchView 's search Icon to the right side?

From Dev

Bootstrap 3 Placing Icon inside input field

From Dev

Validation of input field with icon does not work smoothly

From Dev

How to hide autofill safari icon in input field

From Dev

Bootstrap 3 Placing Icon inside input field

From Dev

Icon unwantedly changing input field size jquery

From Dev

Validation errors move button right - CSS

From Dev

How to expand input field to the right in a header bar

From Dev

what is right jQuery event for a input field with timepicker

From Dev

Top right corner triangle inside a input field

From Dev

Delete Key Move Focus to Previous Input Field

From Dev

How do I move the System Settings icon to the right. Or at least duplicate it to the right

Related Related

  1. 1

    How to align material icon on right of a input field?

  2. 2

    How to move the arrow to the right in the input field?

  3. 3

    How to move cursor small bit from left to right in a Input field

  4. 4

    Android SearchView - Move icon to right (without ActionBar)

  5. 5

    Move icon to right side of text in a QCheckBox

  6. 6

    How to move a field left and right without user input, using ints in xna

  7. 7

    Move table <tfoot> to the right with CSS

  8. 8

    Move CSS Border to Right on Click

  9. 9

    Move CSS menu to right of screen?

  10. 10

    Move CSS menu to right of screen?

  11. 11

    Slide input field in from right?

  12. 12

    How to move text in a input field?

  13. 13

    How to move text in a input field?

  14. 14

    Put icon inside input element in a form and move the icon

  15. 15

    CSS Input field not responsive

  16. 16

    CSS Positioning an icon at the top right side of the image

  17. 17

    Select2 - How to move the close icon to the right of the selected item

  18. 18

    How to move SearchView 's search Icon to the right side?

  19. 19

    Bootstrap 3 Placing Icon inside input field

  20. 20

    Validation of input field with icon does not work smoothly

  21. 21

    How to hide autofill safari icon in input field

  22. 22

    Bootstrap 3 Placing Icon inside input field

  23. 23

    Icon unwantedly changing input field size jquery

  24. 24

    Validation errors move button right - CSS

  25. 25

    How to expand input field to the right in a header bar

  26. 26

    what is right jQuery event for a input field with timepicker

  27. 27

    Top right corner triangle inside a input field

  28. 28

    Delete Key Move Focus to Previous Input Field

  29. 29

    How do I move the System Settings icon to the right. Or at least duplicate it to the right

HotTag

Archive