How to move a text span down a few pixels relative to an image?











up vote
0
down vote

favorite












I have the following html:



<div class="text-center">
<img src="~/images/prof_grade_tech.svg" height="32" />
<span>Professional Grade Technology</span>
</div>


It comes out looking like this:



enter image description here



I would like to move the text span down by 2 pixels to better align it with the image. I've tried adding margin, padding, invisible border, but nothing seems to help. I've added vertical-align:bottom to the image and that kind of worked, but it moved the image too far down.



So how do I move the text 2 pixels down?










share|improve this question
























  • use transform:translate after making the element inline-block
    – Temani Afif
    Nov 9 at 19:00















up vote
0
down vote

favorite












I have the following html:



<div class="text-center">
<img src="~/images/prof_grade_tech.svg" height="32" />
<span>Professional Grade Technology</span>
</div>


It comes out looking like this:



enter image description here



I would like to move the text span down by 2 pixels to better align it with the image. I've tried adding margin, padding, invisible border, but nothing seems to help. I've added vertical-align:bottom to the image and that kind of worked, but it moved the image too far down.



So how do I move the text 2 pixels down?










share|improve this question
























  • use transform:translate after making the element inline-block
    – Temani Afif
    Nov 9 at 19:00













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have the following html:



<div class="text-center">
<img src="~/images/prof_grade_tech.svg" height="32" />
<span>Professional Grade Technology</span>
</div>


It comes out looking like this:



enter image description here



I would like to move the text span down by 2 pixels to better align it with the image. I've tried adding margin, padding, invisible border, but nothing seems to help. I've added vertical-align:bottom to the image and that kind of worked, but it moved the image too far down.



So how do I move the text 2 pixels down?










share|improve this question















I have the following html:



<div class="text-center">
<img src="~/images/prof_grade_tech.svg" height="32" />
<span>Professional Grade Technology</span>
</div>


It comes out looking like this:



enter image description here



I would like to move the text span down by 2 pixels to better align it with the image. I've tried adding margin, padding, invisible border, but nothing seems to help. I've added vertical-align:bottom to the image and that kind of worked, but it moved the image too far down.



So how do I move the text 2 pixels down?







html css css3






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 18:28









Johannes

36.1k102766




36.1k102766










asked Nov 9 at 18:14









AngryHacker

27.1k75236440




27.1k75236440












  • use transform:translate after making the element inline-block
    – Temani Afif
    Nov 9 at 19:00


















  • use transform:translate after making the element inline-block
    – Temani Afif
    Nov 9 at 19:00
















use transform:translate after making the element inline-block
– Temani Afif
Nov 9 at 19:00




use transform:translate after making the element inline-block
– Temani Afif
Nov 9 at 19:00












4 Answers
4






active

oldest

votes

















up vote
1
down vote



accepted










Consider these default factors:





  • <span> is an inline level element, top/bottom padding/margin will not apply.


  • vertical-align is set to baseline - aligns the baseline of the element.


To center align them vertically:



Option 1:






img, span {
display: inline-block;
vertical-align: middle;
}

span {
margin-bottom: -2px;
}

<div class="text-center">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
<span>Professional Grade Technology</span>
</div>





Option 2:






img, span {
display: inline-block;
vertical-align: middle;
}

span {
position: relative;
bottom: -2px;
}

<div class="text-center">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
<span>Professional Grade Technology</span>
</div>





Option 3:






img, span {
display: inline-block;
vertical-align: middle;
}

span {
transform: translateY(2px);
}

<div class="text-center">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
<span>Professional Grade Technology</span>
</div>





Option 4:






div {
display: flex;
align-items: center;
}

span {
margin-left: 4px;
margin-bottom: -2px;
}

<div class="text-center">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
<span>Professional Grade Technology</span>
</div>








share|improve this answer




























    up vote
    2
    down vote













    In my opinion, I suggest to append some div tags inside the logo.



    By using 2 div tags within float: left, we make the 2 div is inline.



    Combine display: table and display: table-cell to vertical center the height of divs.






    .float-left {
    float: left;
    }

    .d-table {
    display: table;
    height: 32px;
    }

    .d-table-cell {
    display: table-cell;
    }

    .align-middle {
    vertical-align: middle;
    }

    <div class="text-center">
    <div class="float-left">
    <div class="d-table">
    <div class="d-table-cell align-middle">
    <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
    </div>
    </div>
    </div>
    <div class="float-left">
    <div class="d-table">
    <div class="d-table-cell align-middle">
    <span>Professional Grade Technology</span>
    </div>
    </div>
    </div>
    </div>








    share|improve this answer




























      up vote
      2
      down vote













      Apply display: inline-block; and position: relative; to the image. Now you can move it in relation to its default position, for example by adding bottom: -2px



      (I applied -6px in the snippet below to make it a bit more obvious)



      As an alternative, you could apply similar settings to the span to move the text instead of the image.






      img {
      display: inline-block;
      position: relative;
      bottom: -6px;
      }

      <div class="text-center">
      <img src="http://placehold.it/40x20" height="32" />
      <span>Professional Grade Technology</span>
      </div>








      share|improve this answer




























        up vote
        1
        down vote













        You can use different divs and with that use the margin or padding!



        <div class="text-center">
        <img src="~/images/prof_grade_tech.svg" height="32" />
        <span>Professional Grade Technology</span>
        </div>
        <div id="span2" class="text-center">
        <span>Professional Grade Technology</span>
        </div>



        <!-- CSS FILE --!>
        #span2{
        margin-top: 2px;
        }





        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',
          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%2f53231266%2fhow-to-move-a-text-span-down-a-few-pixels-relative-to-an-image%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          Consider these default factors:





          • <span> is an inline level element, top/bottom padding/margin will not apply.


          • vertical-align is set to baseline - aligns the baseline of the element.


          To center align them vertically:



          Option 1:






          img, span {
          display: inline-block;
          vertical-align: middle;
          }

          span {
          margin-bottom: -2px;
          }

          <div class="text-center">
          <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
          <span>Professional Grade Technology</span>
          </div>





          Option 2:






          img, span {
          display: inline-block;
          vertical-align: middle;
          }

          span {
          position: relative;
          bottom: -2px;
          }

          <div class="text-center">
          <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
          <span>Professional Grade Technology</span>
          </div>





          Option 3:






          img, span {
          display: inline-block;
          vertical-align: middle;
          }

          span {
          transform: translateY(2px);
          }

          <div class="text-center">
          <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
          <span>Professional Grade Technology</span>
          </div>





          Option 4:






          div {
          display: flex;
          align-items: center;
          }

          span {
          margin-left: 4px;
          margin-bottom: -2px;
          }

          <div class="text-center">
          <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
          <span>Professional Grade Technology</span>
          </div>








          share|improve this answer

























            up vote
            1
            down vote



            accepted










            Consider these default factors:





            • <span> is an inline level element, top/bottom padding/margin will not apply.


            • vertical-align is set to baseline - aligns the baseline of the element.


            To center align them vertically:



            Option 1:






            img, span {
            display: inline-block;
            vertical-align: middle;
            }

            span {
            margin-bottom: -2px;
            }

            <div class="text-center">
            <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
            <span>Professional Grade Technology</span>
            </div>





            Option 2:






            img, span {
            display: inline-block;
            vertical-align: middle;
            }

            span {
            position: relative;
            bottom: -2px;
            }

            <div class="text-center">
            <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
            <span>Professional Grade Technology</span>
            </div>





            Option 3:






            img, span {
            display: inline-block;
            vertical-align: middle;
            }

            span {
            transform: translateY(2px);
            }

            <div class="text-center">
            <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
            <span>Professional Grade Technology</span>
            </div>





            Option 4:






            div {
            display: flex;
            align-items: center;
            }

            span {
            margin-left: 4px;
            margin-bottom: -2px;
            }

            <div class="text-center">
            <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
            <span>Professional Grade Technology</span>
            </div>








            share|improve this answer























              up vote
              1
              down vote



              accepted







              up vote
              1
              down vote



              accepted






              Consider these default factors:





              • <span> is an inline level element, top/bottom padding/margin will not apply.


              • vertical-align is set to baseline - aligns the baseline of the element.


              To center align them vertically:



              Option 1:






              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              Option 2:






              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              position: relative;
              bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              Option 3:






              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              transform: translateY(2px);
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              Option 4:






              div {
              display: flex;
              align-items: center;
              }

              span {
              margin-left: 4px;
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>








              share|improve this answer












              Consider these default factors:





              • <span> is an inline level element, top/bottom padding/margin will not apply.


              • vertical-align is set to baseline - aligns the baseline of the element.


              To center align them vertically:



              Option 1:






              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              Option 2:






              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              position: relative;
              bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              Option 3:






              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              transform: translateY(2px);
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              Option 4:






              div {
              display: flex;
              align-items: center;
              }

              span {
              margin-left: 4px;
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>








              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              position: relative;
              bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              position: relative;
              bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              transform: translateY(2px);
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              img, span {
              display: inline-block;
              vertical-align: middle;
              }

              span {
              transform: translateY(2px);
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              div {
              display: flex;
              align-items: center;
              }

              span {
              margin-left: 4px;
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>





              div {
              display: flex;
              align-items: center;
              }

              span {
              margin-left: 4px;
              margin-bottom: -2px;
              }

              <div class="text-center">
              <img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'%3E%3C/path%3E%3C/svg%3E" width="32" height="32" />
              <span>Professional Grade Technology</span>
              </div>






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 9 at 19:12









              Stickers

              45.3k1176107




              45.3k1176107
























                  up vote
                  2
                  down vote













                  In my opinion, I suggest to append some div tags inside the logo.



                  By using 2 div tags within float: left, we make the 2 div is inline.



                  Combine display: table and display: table-cell to vertical center the height of divs.






                  .float-left {
                  float: left;
                  }

                  .d-table {
                  display: table;
                  height: 32px;
                  }

                  .d-table-cell {
                  display: table-cell;
                  }

                  .align-middle {
                  vertical-align: middle;
                  }

                  <div class="text-center">
                  <div class="float-left">
                  <div class="d-table">
                  <div class="d-table-cell align-middle">
                  <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
                  </div>
                  </div>
                  </div>
                  <div class="float-left">
                  <div class="d-table">
                  <div class="d-table-cell align-middle">
                  <span>Professional Grade Technology</span>
                  </div>
                  </div>
                  </div>
                  </div>








                  share|improve this answer

























                    up vote
                    2
                    down vote













                    In my opinion, I suggest to append some div tags inside the logo.



                    By using 2 div tags within float: left, we make the 2 div is inline.



                    Combine display: table and display: table-cell to vertical center the height of divs.






                    .float-left {
                    float: left;
                    }

                    .d-table {
                    display: table;
                    height: 32px;
                    }

                    .d-table-cell {
                    display: table-cell;
                    }

                    .align-middle {
                    vertical-align: middle;
                    }

                    <div class="text-center">
                    <div class="float-left">
                    <div class="d-table">
                    <div class="d-table-cell align-middle">
                    <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
                    </div>
                    </div>
                    </div>
                    <div class="float-left">
                    <div class="d-table">
                    <div class="d-table-cell align-middle">
                    <span>Professional Grade Technology</span>
                    </div>
                    </div>
                    </div>
                    </div>








                    share|improve this answer























                      up vote
                      2
                      down vote










                      up vote
                      2
                      down vote









                      In my opinion, I suggest to append some div tags inside the logo.



                      By using 2 div tags within float: left, we make the 2 div is inline.



                      Combine display: table and display: table-cell to vertical center the height of divs.






                      .float-left {
                      float: left;
                      }

                      .d-table {
                      display: table;
                      height: 32px;
                      }

                      .d-table-cell {
                      display: table-cell;
                      }

                      .align-middle {
                      vertical-align: middle;
                      }

                      <div class="text-center">
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
                      </div>
                      </div>
                      </div>
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <span>Professional Grade Technology</span>
                      </div>
                      </div>
                      </div>
                      </div>








                      share|improve this answer












                      In my opinion, I suggest to append some div tags inside the logo.



                      By using 2 div tags within float: left, we make the 2 div is inline.



                      Combine display: table and display: table-cell to vertical center the height of divs.






                      .float-left {
                      float: left;
                      }

                      .d-table {
                      display: table;
                      height: 32px;
                      }

                      .d-table-cell {
                      display: table-cell;
                      }

                      .align-middle {
                      vertical-align: middle;
                      }

                      <div class="text-center">
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
                      </div>
                      </div>
                      </div>
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <span>Professional Grade Technology</span>
                      </div>
                      </div>
                      </div>
                      </div>








                      .float-left {
                      float: left;
                      }

                      .d-table {
                      display: table;
                      height: 32px;
                      }

                      .d-table-cell {
                      display: table-cell;
                      }

                      .align-middle {
                      vertical-align: middle;
                      }

                      <div class="text-center">
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
                      </div>
                      </div>
                      </div>
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <span>Professional Grade Technology</span>
                      </div>
                      </div>
                      </div>
                      </div>





                      .float-left {
                      float: left;
                      }

                      .d-table {
                      display: table;
                      height: 32px;
                      }

                      .d-table-cell {
                      display: table-cell;
                      }

                      .align-middle {
                      vertical-align: middle;
                      }

                      <div class="text-center">
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Firefox_Logo%2C_2017.svg/1024px-Firefox_Logo%2C_2017.svg.png" height="32" />
                      </div>
                      </div>
                      </div>
                      <div class="float-left">
                      <div class="d-table">
                      <div class="d-table-cell align-middle">
                      <span>Professional Grade Technology</span>
                      </div>
                      </div>
                      </div>
                      </div>






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Nov 9 at 18:23









                      Tân Nguyễn

                      1




                      1






















                          up vote
                          2
                          down vote













                          Apply display: inline-block; and position: relative; to the image. Now you can move it in relation to its default position, for example by adding bottom: -2px



                          (I applied -6px in the snippet below to make it a bit more obvious)



                          As an alternative, you could apply similar settings to the span to move the text instead of the image.






                          img {
                          display: inline-block;
                          position: relative;
                          bottom: -6px;
                          }

                          <div class="text-center">
                          <img src="http://placehold.it/40x20" height="32" />
                          <span>Professional Grade Technology</span>
                          </div>








                          share|improve this answer

























                            up vote
                            2
                            down vote













                            Apply display: inline-block; and position: relative; to the image. Now you can move it in relation to its default position, for example by adding bottom: -2px



                            (I applied -6px in the snippet below to make it a bit more obvious)



                            As an alternative, you could apply similar settings to the span to move the text instead of the image.






                            img {
                            display: inline-block;
                            position: relative;
                            bottom: -6px;
                            }

                            <div class="text-center">
                            <img src="http://placehold.it/40x20" height="32" />
                            <span>Professional Grade Technology</span>
                            </div>








                            share|improve this answer























                              up vote
                              2
                              down vote










                              up vote
                              2
                              down vote









                              Apply display: inline-block; and position: relative; to the image. Now you can move it in relation to its default position, for example by adding bottom: -2px



                              (I applied -6px in the snippet below to make it a bit more obvious)



                              As an alternative, you could apply similar settings to the span to move the text instead of the image.






                              img {
                              display: inline-block;
                              position: relative;
                              bottom: -6px;
                              }

                              <div class="text-center">
                              <img src="http://placehold.it/40x20" height="32" />
                              <span>Professional Grade Technology</span>
                              </div>








                              share|improve this answer












                              Apply display: inline-block; and position: relative; to the image. Now you can move it in relation to its default position, for example by adding bottom: -2px



                              (I applied -6px in the snippet below to make it a bit more obvious)



                              As an alternative, you could apply similar settings to the span to move the text instead of the image.






                              img {
                              display: inline-block;
                              position: relative;
                              bottom: -6px;
                              }

                              <div class="text-center">
                              <img src="http://placehold.it/40x20" height="32" />
                              <span>Professional Grade Technology</span>
                              </div>








                              img {
                              display: inline-block;
                              position: relative;
                              bottom: -6px;
                              }

                              <div class="text-center">
                              <img src="http://placehold.it/40x20" height="32" />
                              <span>Professional Grade Technology</span>
                              </div>





                              img {
                              display: inline-block;
                              position: relative;
                              bottom: -6px;
                              }

                              <div class="text-center">
                              <img src="http://placehold.it/40x20" height="32" />
                              <span>Professional Grade Technology</span>
                              </div>






                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Nov 9 at 18:27









                              Johannes

                              36.1k102766




                              36.1k102766






















                                  up vote
                                  1
                                  down vote













                                  You can use different divs and with that use the margin or padding!



                                  <div class="text-center">
                                  <img src="~/images/prof_grade_tech.svg" height="32" />
                                  <span>Professional Grade Technology</span>
                                  </div>
                                  <div id="span2" class="text-center">
                                  <span>Professional Grade Technology</span>
                                  </div>



                                  <!-- CSS FILE --!>
                                  #span2{
                                  margin-top: 2px;
                                  }





                                  share|improve this answer

























                                    up vote
                                    1
                                    down vote













                                    You can use different divs and with that use the margin or padding!



                                    <div class="text-center">
                                    <img src="~/images/prof_grade_tech.svg" height="32" />
                                    <span>Professional Grade Technology</span>
                                    </div>
                                    <div id="span2" class="text-center">
                                    <span>Professional Grade Technology</span>
                                    </div>



                                    <!-- CSS FILE --!>
                                    #span2{
                                    margin-top: 2px;
                                    }





                                    share|improve this answer























                                      up vote
                                      1
                                      down vote










                                      up vote
                                      1
                                      down vote









                                      You can use different divs and with that use the margin or padding!



                                      <div class="text-center">
                                      <img src="~/images/prof_grade_tech.svg" height="32" />
                                      <span>Professional Grade Technology</span>
                                      </div>
                                      <div id="span2" class="text-center">
                                      <span>Professional Grade Technology</span>
                                      </div>



                                      <!-- CSS FILE --!>
                                      #span2{
                                      margin-top: 2px;
                                      }





                                      share|improve this answer












                                      You can use different divs and with that use the margin or padding!



                                      <div class="text-center">
                                      <img src="~/images/prof_grade_tech.svg" height="32" />
                                      <span>Professional Grade Technology</span>
                                      </div>
                                      <div id="span2" class="text-center">
                                      <span>Professional Grade Technology</span>
                                      </div>



                                      <!-- CSS FILE --!>
                                      #span2{
                                      margin-top: 2px;
                                      }






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Nov 9 at 18:17









                                      Ninhow

                                      286




                                      286






























                                           

                                          draft saved


                                          draft discarded



















































                                           


                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231266%2fhow-to-move-a-text-span-down-a-few-pixels-relative-to-an-image%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

                                          鏡平學校

                                          ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                                          Why https connections are so slow when debugging (stepping over) in Java?