Make 2 background images equal



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have 2 background images that I need to be vertically equal between each other like in this version
image



Right now I have the styling set at as:



background-repeat: no-repeat, repeat-x, repeat-y;
background-position: 925px center;


However, the equality for the images only stays when I'm looking at on this viewport. When I exited out of the inspect tool, it messes up and resizes it.



I have tried calc() and other background-positions but I haven't been able to solve it.



Any help is appreciated.










share|improve this question




























    0















    I have 2 background images that I need to be vertically equal between each other like in this version
    image



    Right now I have the styling set at as:



    background-repeat: no-repeat, repeat-x, repeat-y;
    background-position: 925px center;


    However, the equality for the images only stays when I'm looking at on this viewport. When I exited out of the inspect tool, it messes up and resizes it.



    I have tried calc() and other background-positions but I haven't been able to solve it.



    Any help is appreciated.










    share|improve this question
























      0












      0








      0








      I have 2 background images that I need to be vertically equal between each other like in this version
      image



      Right now I have the styling set at as:



      background-repeat: no-repeat, repeat-x, repeat-y;
      background-position: 925px center;


      However, the equality for the images only stays when I'm looking at on this viewport. When I exited out of the inspect tool, it messes up and resizes it.



      I have tried calc() and other background-positions but I haven't been able to solve it.



      Any help is appreciated.










      share|improve this question














      I have 2 background images that I need to be vertically equal between each other like in this version
      image



      Right now I have the styling set at as:



      background-repeat: no-repeat, repeat-x, repeat-y;
      background-position: 925px center;


      However, the equality for the images only stays when I'm looking at on this viewport. When I exited out of the inspect tool, it messes up and resizes it.



      I have tried calc() and other background-positions but I haven't been able to solve it.



      Any help is appreciated.







      css image image-scaling






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 15 '18 at 14:25









      Marsel GrayMarsel Gray

      228




      228






















          2 Answers
          2






          active

          oldest

          votes


















          1














          I think this should do the trick. The reason the first background is applied to the body is so that when the number of pixels in width are odd, there won't be a white line in the middle.






          *
          margin:0;
          padding:0;

          body
          background: url(https://www.w3schools.com/w3images/fjords.jpg);
          overflow-x: hidden;

          #right
          background: url(https://www.w3schools.com/w3css/img_lights.jpg);
          width: 50%;
          position: absolute;
          right: 0px;
          height: 100%;

          <div id="right"></div>





          ref.
          https://css-tricks.com/multiple-backgrounds-left-half-and-right-half/






          share|improve this answer






























            0














            You could also do this by having two containers, put each image in a separate container or as a background (which is better) and use flex. Much easier with less code . Check this guide https://css-tricks.com/snippets/css/a-guide-to-flexbox/






            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%2f53321594%2fmake-2-background-images-equal%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









              1














              I think this should do the trick. The reason the first background is applied to the body is so that when the number of pixels in width are odd, there won't be a white line in the middle.






              *
              margin:0;
              padding:0;

              body
              background: url(https://www.w3schools.com/w3images/fjords.jpg);
              overflow-x: hidden;

              #right
              background: url(https://www.w3schools.com/w3css/img_lights.jpg);
              width: 50%;
              position: absolute;
              right: 0px;
              height: 100%;

              <div id="right"></div>





              ref.
              https://css-tricks.com/multiple-backgrounds-left-half-and-right-half/






              share|improve this answer



























                1














                I think this should do the trick. The reason the first background is applied to the body is so that when the number of pixels in width are odd, there won't be a white line in the middle.






                *
                margin:0;
                padding:0;

                body
                background: url(https://www.w3schools.com/w3images/fjords.jpg);
                overflow-x: hidden;

                #right
                background: url(https://www.w3schools.com/w3css/img_lights.jpg);
                width: 50%;
                position: absolute;
                right: 0px;
                height: 100%;

                <div id="right"></div>





                ref.
                https://css-tricks.com/multiple-backgrounds-left-half-and-right-half/






                share|improve this answer

























                  1












                  1








                  1







                  I think this should do the trick. The reason the first background is applied to the body is so that when the number of pixels in width are odd, there won't be a white line in the middle.






                  *
                  margin:0;
                  padding:0;

                  body
                  background: url(https://www.w3schools.com/w3images/fjords.jpg);
                  overflow-x: hidden;

                  #right
                  background: url(https://www.w3schools.com/w3css/img_lights.jpg);
                  width: 50%;
                  position: absolute;
                  right: 0px;
                  height: 100%;

                  <div id="right"></div>





                  ref.
                  https://css-tricks.com/multiple-backgrounds-left-half-and-right-half/






                  share|improve this answer













                  I think this should do the trick. The reason the first background is applied to the body is so that when the number of pixels in width are odd, there won't be a white line in the middle.






                  *
                  margin:0;
                  padding:0;

                  body
                  background: url(https://www.w3schools.com/w3images/fjords.jpg);
                  overflow-x: hidden;

                  #right
                  background: url(https://www.w3schools.com/w3css/img_lights.jpg);
                  width: 50%;
                  position: absolute;
                  right: 0px;
                  height: 100%;

                  <div id="right"></div>





                  ref.
                  https://css-tricks.com/multiple-backgrounds-left-half-and-right-half/






                  *
                  margin:0;
                  padding:0;

                  body
                  background: url(https://www.w3schools.com/w3images/fjords.jpg);
                  overflow-x: hidden;

                  #right
                  background: url(https://www.w3schools.com/w3css/img_lights.jpg);
                  width: 50%;
                  position: absolute;
                  right: 0px;
                  height: 100%;

                  <div id="right"></div>





                  *
                  margin:0;
                  padding:0;

                  body
                  background: url(https://www.w3schools.com/w3images/fjords.jpg);
                  overflow-x: hidden;

                  #right
                  background: url(https://www.w3schools.com/w3css/img_lights.jpg);
                  width: 50%;
                  position: absolute;
                  right: 0px;
                  height: 100%;

                  <div id="right"></div>






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 15 '18 at 14:49









                  RokoRoko

                  10312




                  10312























                      0














                      You could also do this by having two containers, put each image in a separate container or as a background (which is better) and use flex. Much easier with less code . Check this guide https://css-tricks.com/snippets/css/a-guide-to-flexbox/






                      share|improve this answer



























                        0














                        You could also do this by having two containers, put each image in a separate container or as a background (which is better) and use flex. Much easier with less code . Check this guide https://css-tricks.com/snippets/css/a-guide-to-flexbox/






                        share|improve this answer

























                          0












                          0








                          0







                          You could also do this by having two containers, put each image in a separate container or as a background (which is better) and use flex. Much easier with less code . Check this guide https://css-tricks.com/snippets/css/a-guide-to-flexbox/






                          share|improve this answer













                          You could also do this by having two containers, put each image in a separate container or as a background (which is better) and use flex. Much easier with less code . Check this guide https://css-tricks.com/snippets/css/a-guide-to-flexbox/







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 15 '18 at 15:25









                          Bojan KolanoBojan Kolano

                          14711




                          14711



























                              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%2f53321594%2fmake-2-background-images-equal%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

                              How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                              Syphilis

                              Darth Vader #20