Use Font Awesome (5) icon in input placeholder text












1
















I've come across many ways to solve this using Font Awesome < 5, but I can't seem to solve this in any way using Font Awesome 5.



This is how many resources point to adding a Font Awesome icon in placeholder text.



<input style="font-family:FontAwesome !important" type="text" placeholder="&#xf167">









share|improve this question





























    1
















    I've come across many ways to solve this using Font Awesome < 5, but I can't seem to solve this in any way using Font Awesome 5.



    This is how many resources point to adding a Font Awesome icon in placeholder text.



    <input style="font-family:FontAwesome !important" type="text" placeholder="&#xf167">









    share|improve this question



























      1












      1








      1


      1







      I've come across many ways to solve this using Font Awesome < 5, but I can't seem to solve this in any way using Font Awesome 5.



      This is how many resources point to adding a Font Awesome icon in placeholder text.



      <input style="font-family:FontAwesome !important" type="text" placeholder="&#xf167">









      share|improve this question

















      I've come across many ways to solve this using Font Awesome < 5, but I can't seem to solve this in any way using Font Awesome 5.



      This is how many resources point to adding a Font Awesome icon in placeholder text.



      <input style="font-family:FontAwesome !important" type="text" placeholder="&#xf167">






      input font-awesome placeholder font-awesome-5






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 28 '18 at 3:46







      Thomas Lindauer

















      asked Apr 26 '18 at 22:38









      Thomas LindauerThomas Lindauer

      413611




      413611
























          2 Answers
          2






          active

          oldest

          votes


















          5














          Remember to not use the general "Font Awesome 5" font family, you need to specifically end with the branch of icons you're working with. Here i am working the "Brands" category.



          <input style="font-family:'Font Awesome 5 Brands' !important" type="text" placeholder="&#xf167">


          For a more sophisticated solution you could implement a class that works specifically on the placeholder text of a class like this and add that class to you input. Useful if you want a different font-family on your input values.



          .useFontAwesomeFamily::-webkit-input-placeholder { /* WebKit, Blink, Edge */
          font-family: "Font Awesome 5 Brands" !important;
          }
          .useFontAwesomeFamily:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
          font-family: "Font Awesome 5 Brands" !important;
          }
          .useFontAwesomeFamily::-moz-placeholder { /* Mozilla Firefox 19+ */
          font-family: "Font Awesome 5 Brands" !important;
          }
          .useFontAwesomeFamily:-ms-input-placeholder { /* Internet Explorer 10-11 */
          font-family: "Font Awesome 5 Brands" !important;
          }
          .useFontAwesomeFamily::-ms-input-placeholder { /* Microsoft Edge */
          font-family: "Font Awesome 5 Brands" !important;
          }
          .useFontAwesomeFamily::placeholder { /* Most modern browsers */
          font-family: "Font Awesome 5 Brands" !important;
          }


          And then add this class to your tag.



          <input class="useFontAwesomeFamily" type="text" placeholder="">





          share|improve this answer

































            0














            You can also the fas class to the input.



            Just bear in mind that this solution and any font-awesome style changing solutions will also change the style of any text preceding or following the unicode icon.






            share|improve this answer
























            • Please post example with it

              – saAction
              Sep 21 '18 at 1:09











            • @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

              – agorf
              Feb 26 at 9:20












            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f50052813%2fuse-font-awesome-5-icon-in-input-placeholder-text%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5














            Remember to not use the general "Font Awesome 5" font family, you need to specifically end with the branch of icons you're working with. Here i am working the "Brands" category.



            <input style="font-family:'Font Awesome 5 Brands' !important" type="text" placeholder="&#xf167">


            For a more sophisticated solution you could implement a class that works specifically on the placeholder text of a class like this and add that class to you input. Useful if you want a different font-family on your input values.



            .useFontAwesomeFamily::-webkit-input-placeholder { /* WebKit, Blink, Edge */
            font-family: "Font Awesome 5 Brands" !important;
            }
            .useFontAwesomeFamily:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
            font-family: "Font Awesome 5 Brands" !important;
            }
            .useFontAwesomeFamily::-moz-placeholder { /* Mozilla Firefox 19+ */
            font-family: "Font Awesome 5 Brands" !important;
            }
            .useFontAwesomeFamily:-ms-input-placeholder { /* Internet Explorer 10-11 */
            font-family: "Font Awesome 5 Brands" !important;
            }
            .useFontAwesomeFamily::-ms-input-placeholder { /* Microsoft Edge */
            font-family: "Font Awesome 5 Brands" !important;
            }
            .useFontAwesomeFamily::placeholder { /* Most modern browsers */
            font-family: "Font Awesome 5 Brands" !important;
            }


            And then add this class to your tag.



            <input class="useFontAwesomeFamily" type="text" placeholder="">





            share|improve this answer






























              5














              Remember to not use the general "Font Awesome 5" font family, you need to specifically end with the branch of icons you're working with. Here i am working the "Brands" category.



              <input style="font-family:'Font Awesome 5 Brands' !important" type="text" placeholder="&#xf167">


              For a more sophisticated solution you could implement a class that works specifically on the placeholder text of a class like this and add that class to you input. Useful if you want a different font-family on your input values.



              .useFontAwesomeFamily::-webkit-input-placeholder { /* WebKit, Blink, Edge */
              font-family: "Font Awesome 5 Brands" !important;
              }
              .useFontAwesomeFamily:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
              font-family: "Font Awesome 5 Brands" !important;
              }
              .useFontAwesomeFamily::-moz-placeholder { /* Mozilla Firefox 19+ */
              font-family: "Font Awesome 5 Brands" !important;
              }
              .useFontAwesomeFamily:-ms-input-placeholder { /* Internet Explorer 10-11 */
              font-family: "Font Awesome 5 Brands" !important;
              }
              .useFontAwesomeFamily::-ms-input-placeholder { /* Microsoft Edge */
              font-family: "Font Awesome 5 Brands" !important;
              }
              .useFontAwesomeFamily::placeholder { /* Most modern browsers */
              font-family: "Font Awesome 5 Brands" !important;
              }


              And then add this class to your tag.



              <input class="useFontAwesomeFamily" type="text" placeholder="">





              share|improve this answer




























                5












                5








                5







                Remember to not use the general "Font Awesome 5" font family, you need to specifically end with the branch of icons you're working with. Here i am working the "Brands" category.



                <input style="font-family:'Font Awesome 5 Brands' !important" type="text" placeholder="&#xf167">


                For a more sophisticated solution you could implement a class that works specifically on the placeholder text of a class like this and add that class to you input. Useful if you want a different font-family on your input values.



                .useFontAwesomeFamily::-webkit-input-placeholder { /* WebKit, Blink, Edge */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily::-moz-placeholder { /* Mozilla Firefox 19+ */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily:-ms-input-placeholder { /* Internet Explorer 10-11 */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily::-ms-input-placeholder { /* Microsoft Edge */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily::placeholder { /* Most modern browsers */
                font-family: "Font Awesome 5 Brands" !important;
                }


                And then add this class to your tag.



                <input class="useFontAwesomeFamily" type="text" placeholder="">





                share|improve this answer















                Remember to not use the general "Font Awesome 5" font family, you need to specifically end with the branch of icons you're working with. Here i am working the "Brands" category.



                <input style="font-family:'Font Awesome 5 Brands' !important" type="text" placeholder="&#xf167">


                For a more sophisticated solution you could implement a class that works specifically on the placeholder text of a class like this and add that class to you input. Useful if you want a different font-family on your input values.



                .useFontAwesomeFamily::-webkit-input-placeholder { /* WebKit, Blink, Edge */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily::-moz-placeholder { /* Mozilla Firefox 19+ */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily:-ms-input-placeholder { /* Internet Explorer 10-11 */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily::-ms-input-placeholder { /* Microsoft Edge */
                font-family: "Font Awesome 5 Brands" !important;
                }
                .useFontAwesomeFamily::placeholder { /* Most modern browsers */
                font-family: "Font Awesome 5 Brands" !important;
                }


                And then add this class to your tag.



                <input class="useFontAwesomeFamily" type="text" placeholder="">






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 23 '18 at 11:00

























                answered Apr 27 '18 at 5:56









                Thomas LindauerThomas Lindauer

                413611




                413611

























                    0














                    You can also the fas class to the input.



                    Just bear in mind that this solution and any font-awesome style changing solutions will also change the style of any text preceding or following the unicode icon.






                    share|improve this answer
























                    • Please post example with it

                      – saAction
                      Sep 21 '18 at 1:09











                    • @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

                      – agorf
                      Feb 26 at 9:20
















                    0














                    You can also the fas class to the input.



                    Just bear in mind that this solution and any font-awesome style changing solutions will also change the style of any text preceding or following the unicode icon.






                    share|improve this answer
























                    • Please post example with it

                      – saAction
                      Sep 21 '18 at 1:09











                    • @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

                      – agorf
                      Feb 26 at 9:20














                    0












                    0








                    0







                    You can also the fas class to the input.



                    Just bear in mind that this solution and any font-awesome style changing solutions will also change the style of any text preceding or following the unicode icon.






                    share|improve this answer













                    You can also the fas class to the input.



                    Just bear in mind that this solution and any font-awesome style changing solutions will also change the style of any text preceding or following the unicode icon.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Sep 20 '18 at 23:49









                    NastyStylesNastyStyles

                    1




                    1













                    • Please post example with it

                      – saAction
                      Sep 21 '18 at 1:09











                    • @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

                      – agorf
                      Feb 26 at 9:20



















                    • Please post example with it

                      – saAction
                      Sep 21 '18 at 1:09











                    • @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

                      – agorf
                      Feb 26 at 9:20

















                    Please post example with it

                    – saAction
                    Sep 21 '18 at 1:09





                    Please post example with it

                    – saAction
                    Sep 21 '18 at 1:09













                    @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

                    – agorf
                    Feb 26 at 9:20





                    @saAction <input class="fas fa-search" type="text" name="search" placeholder=" Search...">

                    – agorf
                    Feb 26 at 9:20


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f50052813%2fuse-font-awesome-5-icon-in-input-placeholder-text%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Hercules Kyvelos

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud