CSS: Position: absolute; causes input element to move on input in Chrome
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
add a comment |
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
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
add a comment |
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
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
html css
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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;
}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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;
}
add a comment |
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;
}
add a comment |
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;
}
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;
}
answered Nov 23 '18 at 13:53
WrakWrak
162
162
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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