make div css width 1366px height 768px fit the parent div










0















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










share|improve this question



















  • 2





    You can use: .child width: 1366px; height: 768px; max-width: 100%; max-height: 100%;

    – Super User
    Nov 14 '18 at 9:23
















0















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










share|improve this question



















  • 2





    You can use: .child width: 1366px; height: 768px; max-width: 100%; max-height: 100%;

    – Super User
    Nov 14 '18 at 9:23














0












0








0








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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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













  • 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













2 Answers
2






active

oldest

votes


















0














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>








share|improve this answer






























    0














    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;






    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%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









      0














      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>








      share|improve this answer



























        0














        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>








        share|improve this answer

























          0












          0








          0







          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>








          share|improve this answer













          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>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 14 '18 at 9:34









          SaniraSanira

          12519




          12519























              0














              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;






              share|improve this answer



























                0














                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;






                share|improve this answer

























                  0












                  0








                  0







                  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;






                  share|improve this answer













                  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;







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 14 '18 at 12:29









                  NOMAN ALINOMAN ALI

                  12




                  12



























                      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%2f53296709%2fmake-div-css-width-1366px-height-768px-fit-the-parent-div%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

                      Top Tejano songwriter Luis Silva dead of heart attack at 64

                      ReactJS Fetched API data displays live - need Data displayed static

                      Evgeni Malkin