make div css width 1366px height 768px fit the parent div
I have an code
<div class="parent">
<div class ="child"></div>
</div>
parent div have class col-lg-12
I want make "child" div have width 1366px and height 768px but fit with the "parent" div, how to do it?.
so I don't need to scroll the screen anymore. I hope you guys can help.
Thanks
html css height width pixel
add a comment |
I have an code
<div class="parent">
<div class ="child"></div>
</div>
parent div have class col-lg-12
I want make "child" div have width 1366px and height 768px but fit with the "parent" div, how to do it?.
so I don't need to scroll the screen anymore. I hope you guys can help.
Thanks
html css height width pixel
2
You can use:.child {width: 1366px; height: 768px; max-width: 100%; max-height: 100%;}
– Super User
Nov 14 '18 at 9:23
add a comment |
I have an code
<div class="parent">
<div class ="child"></div>
</div>
parent div have class col-lg-12
I want make "child" div have width 1366px and height 768px but fit with the "parent" div, how to do it?.
so I don't need to scroll the screen anymore. I hope you guys can help.
Thanks
html css height width pixel
I have an code
<div class="parent">
<div class ="child"></div>
</div>
parent div have class col-lg-12
I want make "child" div have width 1366px and height 768px but fit with the "parent" div, how to do it?.
so I don't need to scroll the screen anymore. I hope you guys can help.
Thanks
html css height width pixel
html css height width pixel
edited Nov 14 '18 at 10:10
Viira
2,348426
2,348426
asked Nov 14 '18 at 9:21
codercoder
84
84
2
You can use:.child {width: 1366px; height: 768px; max-width: 100%; max-height: 100%;}
– Super User
Nov 14 '18 at 9:23
add a comment |
2
You can use:.child {width: 1366px; height: 768px; max-width: 100%; max-height: 100%;}
– Super User
Nov 14 '18 at 9:23
2
2
You can use:
.child {width: 1366px; height: 768px; max-width: 100%; max-height: 100%;}
– Super User
Nov 14 '18 at 9:23
You can use:
.child {width: 1366px; height: 768px; max-width: 100%; max-height: 100%;}
– Super User
Nov 14 '18 at 9:23
add a comment |
2 Answers
2
active
oldest
votes
See if this is what you've looking for.
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
add a comment |
I hope this will help you , hopefully you are looking for screen adjustment to your child div , so use viewport unit (vw and vh).
.parent{ width: 100%; }
.child {
width: 100vw;
height: 100vh;
}
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%2f53296709%2fmake-div-css-width-1366px-height-768px-fit-the-parent-div%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
See if this is what you've looking for.
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
add a comment |
See if this is what you've looking for.
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
add a comment |
See if this is what you've looking for.
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
See if this is what you've looking for.
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
.parent{
width: 100%;
}
.child{
width: 1366px;
height: 768px;
max-width:100%;
max-height: 100%;
background-color:red;
margin:0;
padding:0;
}
<div class="parent">
<div class ="child"></div>
</div>
answered Nov 14 '18 at 9:34
SaniraSanira
12519
12519
add a comment |
add a comment |
I hope this will help you , hopefully you are looking for screen adjustment to your child div , so use viewport unit (vw and vh).
.parent{ width: 100%; }
.child {
width: 100vw;
height: 100vh;
}
add a comment |
I hope this will help you , hopefully you are looking for screen adjustment to your child div , so use viewport unit (vw and vh).
.parent{ width: 100%; }
.child {
width: 100vw;
height: 100vh;
}
add a comment |
I hope this will help you , hopefully you are looking for screen adjustment to your child div , so use viewport unit (vw and vh).
.parent{ width: 100%; }
.child {
width: 100vw;
height: 100vh;
}
I hope this will help you , hopefully you are looking for screen adjustment to your child div , so use viewport unit (vw and vh).
.parent{ width: 100%; }
.child {
width: 100vw;
height: 100vh;
}
answered Nov 14 '18 at 12:29
NOMAN ALINOMAN ALI
12
12
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.
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%2f53296709%2fmake-div-css-width-1366px-height-768px-fit-the-parent-div%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
2
You can use:
.child {width: 1366px; height: 768px; max-width: 100%; max-height: 100%;}
– Super User
Nov 14 '18 at 9:23