CSS: Position: absolute; causes input element to move on input in Chrome












1














I have a search box inside a grid, but for some reason, the input box jumps almost to the other side of the page when a user starts typing in it. I've narrowed it down and found out that the position: absolute causes this. This only happens in Chrome. What's wrong with the code?



CSS:



header {
display: grid;
grid-template-columns: 15% 50% 30% 5%;
height: 40px;
width: auto;
/*border: 1px solid red;*/
margin-left: 26.5%;
margin-right: 50px;
margin-top: 35px;
position: relative;
}

header input {
grid-column-start: 3;
margin-top: 2px;
margin-bottom: 2px;
}

.searchStyle {
border: none;
background-color: transparent;
width: 75px;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
position: absolute;
right: 60px;
top: 21%;
}

.searchStyle:focus {
width: 200px;
border-bottom: 1px solid #BA9765;
outline: none;
}


HTML:



<header>
[other code]

<input class="searchStyle" type="text" placeholder="SEARCH…" id="search-bar" />
[other code]
</header>


Here's the issue in Chrome.



Here's what it should look like (Firefox).










share|improve this question
























  • Question: why exactly are you using grid-template but then absolutely position an element? I'm not saying that's necessarily a bad thing, just curious about the rationale behind your code.
    – Jacque Goupil
    Nov 23 '18 at 12:49










  • Not an expert in CSS yet, so I don't know if it's the optimal solution, but I wanted to align the input field to the right side inside the grid column and then make it expand with an animation towards left when focused. Without position: absolute it expands towards right instead, which I don't want.
    – Wrak
    Nov 23 '18 at 13:05


















1














I have a search box inside a grid, but for some reason, the input box jumps almost to the other side of the page when a user starts typing in it. I've narrowed it down and found out that the position: absolute causes this. This only happens in Chrome. What's wrong with the code?



CSS:



header {
display: grid;
grid-template-columns: 15% 50% 30% 5%;
height: 40px;
width: auto;
/*border: 1px solid red;*/
margin-left: 26.5%;
margin-right: 50px;
margin-top: 35px;
position: relative;
}

header input {
grid-column-start: 3;
margin-top: 2px;
margin-bottom: 2px;
}

.searchStyle {
border: none;
background-color: transparent;
width: 75px;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
position: absolute;
right: 60px;
top: 21%;
}

.searchStyle:focus {
width: 200px;
border-bottom: 1px solid #BA9765;
outline: none;
}


HTML:



<header>
[other code]

<input class="searchStyle" type="text" placeholder="SEARCH…" id="search-bar" />
[other code]
</header>


Here's the issue in Chrome.



Here's what it should look like (Firefox).










share|improve this question
























  • Question: why exactly are you using grid-template but then absolutely position an element? I'm not saying that's necessarily a bad thing, just curious about the rationale behind your code.
    – Jacque Goupil
    Nov 23 '18 at 12:49










  • Not an expert in CSS yet, so I don't know if it's the optimal solution, but I wanted to align the input field to the right side inside the grid column and then make it expand with an animation towards left when focused. Without position: absolute it expands towards right instead, which I don't want.
    – Wrak
    Nov 23 '18 at 13:05
















1












1








1







I have a search box inside a grid, but for some reason, the input box jumps almost to the other side of the page when a user starts typing in it. I've narrowed it down and found out that the position: absolute causes this. This only happens in Chrome. What's wrong with the code?



CSS:



header {
display: grid;
grid-template-columns: 15% 50% 30% 5%;
height: 40px;
width: auto;
/*border: 1px solid red;*/
margin-left: 26.5%;
margin-right: 50px;
margin-top: 35px;
position: relative;
}

header input {
grid-column-start: 3;
margin-top: 2px;
margin-bottom: 2px;
}

.searchStyle {
border: none;
background-color: transparent;
width: 75px;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
position: absolute;
right: 60px;
top: 21%;
}

.searchStyle:focus {
width: 200px;
border-bottom: 1px solid #BA9765;
outline: none;
}


HTML:



<header>
[other code]

<input class="searchStyle" type="text" placeholder="SEARCH…" id="search-bar" />
[other code]
</header>


Here's the issue in Chrome.



Here's what it should look like (Firefox).










share|improve this question















I have a search box inside a grid, but for some reason, the input box jumps almost to the other side of the page when a user starts typing in it. I've narrowed it down and found out that the position: absolute causes this. This only happens in Chrome. What's wrong with the code?



CSS:



header {
display: grid;
grid-template-columns: 15% 50% 30% 5%;
height: 40px;
width: auto;
/*border: 1px solid red;*/
margin-left: 26.5%;
margin-right: 50px;
margin-top: 35px;
position: relative;
}

header input {
grid-column-start: 3;
margin-top: 2px;
margin-bottom: 2px;
}

.searchStyle {
border: none;
background-color: transparent;
width: 75px;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
position: absolute;
right: 60px;
top: 21%;
}

.searchStyle:focus {
width: 200px;
border-bottom: 1px solid #BA9765;
outline: none;
}


HTML:



<header>
[other code]

<input class="searchStyle" type="text" placeholder="SEARCH…" id="search-bar" />
[other code]
</header>


Here's the issue in Chrome.



Here's what it should look like (Firefox).







html css






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '18 at 12:41









Roope

3,29211342




3,29211342










asked Nov 23 '18 at 12:14









WrakWrak

162




162












  • Question: why exactly are you using grid-template but then absolutely position an element? I'm not saying that's necessarily a bad thing, just curious about the rationale behind your code.
    – Jacque Goupil
    Nov 23 '18 at 12:49










  • Not an expert in CSS yet, so I don't know if it's the optimal solution, but I wanted to align the input field to the right side inside the grid column and then make it expand with an animation towards left when focused. Without position: absolute it expands towards right instead, which I don't want.
    – Wrak
    Nov 23 '18 at 13:05




















  • Question: why exactly are you using grid-template but then absolutely position an element? I'm not saying that's necessarily a bad thing, just curious about the rationale behind your code.
    – Jacque Goupil
    Nov 23 '18 at 12:49










  • Not an expert in CSS yet, so I don't know if it's the optimal solution, but I wanted to align the input field to the right side inside the grid column and then make it expand with an animation towards left when focused. Without position: absolute it expands towards right instead, which I don't want.
    – Wrak
    Nov 23 '18 at 13:05


















Question: why exactly are you using grid-template but then absolutely position an element? I'm not saying that's necessarily a bad thing, just curious about the rationale behind your code.
– Jacque Goupil
Nov 23 '18 at 12:49




Question: why exactly are you using grid-template but then absolutely position an element? I'm not saying that's necessarily a bad thing, just curious about the rationale behind your code.
– Jacque Goupil
Nov 23 '18 at 12:49












Not an expert in CSS yet, so I don't know if it's the optimal solution, but I wanted to align the input field to the right side inside the grid column and then make it expand with an animation towards left when focused. Without position: absolute it expands towards right instead, which I don't want.
– Wrak
Nov 23 '18 at 13:05






Not an expert in CSS yet, so I don't know if it's the optimal solution, but I wanted to align the input field to the right side inside the grid column and then make it expand with an animation towards left when focused. Without position: absolute it expands towards right instead, which I don't want.
– Wrak
Nov 23 '18 at 13:05














1 Answer
1






active

oldest

votes


















1














Didn't find out why position: absolute causes this in Chrome, but manage to find a solution by removing the position absolute, put the input inside a div and make a class for that div with these values:



.gridAlign {
grid-column-start: 3;
display: flex;
justify-content: flex-end;
margin-right: 10px;
margin-top: 7px;
margin-bottom: 7px;
}





share|improve this answer





















    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%2f53446539%2fcss-position-absolute-causes-input-element-to-move-on-input-in-chrome%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Didn't find out why position: absolute causes this in Chrome, but manage to find a solution by removing the position absolute, put the input inside a div and make a class for that div with these values:



    .gridAlign {
    grid-column-start: 3;
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
    margin-top: 7px;
    margin-bottom: 7px;
    }





    share|improve this answer


























      1














      Didn't find out why position: absolute causes this in Chrome, but manage to find a solution by removing the position absolute, put the input inside a div and make a class for that div with these values:



      .gridAlign {
      grid-column-start: 3;
      display: flex;
      justify-content: flex-end;
      margin-right: 10px;
      margin-top: 7px;
      margin-bottom: 7px;
      }





      share|improve this answer
























        1












        1








        1






        Didn't find out why position: absolute causes this in Chrome, but manage to find a solution by removing the position absolute, put the input inside a div and make a class for that div with these values:



        .gridAlign {
        grid-column-start: 3;
        display: flex;
        justify-content: flex-end;
        margin-right: 10px;
        margin-top: 7px;
        margin-bottom: 7px;
        }





        share|improve this answer












        Didn't find out why position: absolute causes this in Chrome, but manage to find a solution by removing the position absolute, put the input inside a div and make a class for that div with these values:



        .gridAlign {
        grid-column-start: 3;
        display: flex;
        justify-content: flex-end;
        margin-right: 10px;
        margin-top: 7px;
        margin-bottom: 7px;
        }






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 13:53









        WrakWrak

        162




        162






























            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f53446539%2fcss-position-absolute-causes-input-element-to-move-on-input-in-chrome%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







            Popular posts from this blog

            Trompette piccolo

            How do I get these specific pathlines to nodes?

            What visual should I use to simply compare current year value vs last year in Power BI desktop