Absolute div got covered by translated element'transform3d' not working with position: fixed childrenWhy can't an element with a z-index value cover its child?I have position but z index is not workingMake a div fill the height of the remaining screen spaceHow to horizontally center a <div>?How to make div not larger than its contents?Creating a div element in jQueryHow to move an element into another element?How to make a div 100% height of the browser windowHow to center absolutely positioned element in div?How do I auto-resize an image to fit a 'div' container?Click through div to underlying elementsCannot display HTML string

How to run a command 1 out of N times in Bash

'spazieren' - walking in a silly and affected manner?

New coworker has strange workplace requirements - how should I deal with them?

Could these polynomials be identified?

Can users with the same $HOME have separate bash histories?

Why is Mitch McConnell blocking nominees to the Federal Election Commission?

How can I portray a character with no fear of death, without them sounding utterly bored?

In Toy Story, are toys the only inanimate objects that become alive? And if so, why?

Why didn't Thatcher give Hong Kong to Taiwan?

Ways you can end up paying interest on a credit card if you pay the full amount back in due time

Tasha's Hideous Laughter used on a deaf person?

Displaying Time in HH:MM Format

Squares inside a square

How does Query decide the order in which the functions are applied?

How to correctly set logical high level on PS/2 port?

What is causing gaps in logs?

Why don't "echo -e" commands seem to produce the right output?

Using font to highlight a god's speech in dialogue

Can authors email you PDFs of their textbook for free?

Heuristic argument for the Riemann Hypothesis

Cannot add javascript to footer

Different past tense for various *et words

Can a human variant take proficiency in initiative?

Is Borg adaptation only temporary?



Absolute div got covered by translated element


'transform3d' not working with position: fixed childrenWhy can't an element with a z-index value cover its child?I have position but z index is not workingMake a div fill the height of the remaining screen spaceHow to horizontally center a <div>?How to make div not larger than its contents?Creating a div element in jQueryHow to move an element into another element?How to make a div 100% height of the browser windowHow to center absolutely positioned element in div?How do I auto-resize an image to fit a 'div' container?Click through div to underlying elementsCannot display HTML string






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I have a problem that I'm trying to solve but have been stuck so far.



I have a table that I use a little trick on it; this results in my table contains the style of



"transform: translate(0,0)"


for a bunch of cells. This is where the problem occurs. I'm having a tooltip in it, which requires position absolute to work. But so far, the tooltip got completely hidden by the translated element. You can see the problem through this:






th, td 
padding: 20px


#cell
background-color: lightblue;


.parent
position: relative;


.translate
transform: translate(0,0);


.overflow
position: absolute;
bottom: -20px;
left: 0;

<html>
<head></head>
<body>
<table border="1">
<thead>
<tr>
<th><p>Hi</p></th>
<th class="parent translate">
<p>Hello</p>
<div class="overflow">Overflow text</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>hello cell</td>
<td class="translate" id="cell">hello cell</td>
</tr>
</tbody>
</table>
</body>
</html>





How can I solve this problem? I have tried everything that I have thought of :(. Please help










share|improve this question
































    1















    I have a problem that I'm trying to solve but have been stuck so far.



    I have a table that I use a little trick on it; this results in my table contains the style of



    "transform: translate(0,0)"


    for a bunch of cells. This is where the problem occurs. I'm having a tooltip in it, which requires position absolute to work. But so far, the tooltip got completely hidden by the translated element. You can see the problem through this:






    th, td 
    padding: 20px


    #cell
    background-color: lightblue;


    .parent
    position: relative;


    .translate
    transform: translate(0,0);


    .overflow
    position: absolute;
    bottom: -20px;
    left: 0;

    <html>
    <head></head>
    <body>
    <table border="1">
    <thead>
    <tr>
    <th><p>Hi</p></th>
    <th class="parent translate">
    <p>Hello</p>
    <div class="overflow">Overflow text</div>
    </th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>hello cell</td>
    <td class="translate" id="cell">hello cell</td>
    </tr>
    </tbody>
    </table>
    </body>
    </html>





    How can I solve this problem? I have tried everything that I have thought of :(. Please help










    share|improve this question




























      1












      1








      1








      I have a problem that I'm trying to solve but have been stuck so far.



      I have a table that I use a little trick on it; this results in my table contains the style of



      "transform: translate(0,0)"


      for a bunch of cells. This is where the problem occurs. I'm having a tooltip in it, which requires position absolute to work. But so far, the tooltip got completely hidden by the translated element. You can see the problem through this:






      th, td 
      padding: 20px


      #cell
      background-color: lightblue;


      .parent
      position: relative;


      .translate
      transform: translate(0,0);


      .overflow
      position: absolute;
      bottom: -20px;
      left: 0;

      <html>
      <head></head>
      <body>
      <table border="1">
      <thead>
      <tr>
      <th><p>Hi</p></th>
      <th class="parent translate">
      <p>Hello</p>
      <div class="overflow">Overflow text</div>
      </th>
      </tr>
      </thead>
      <tbody>
      <tr>
      <td>hello cell</td>
      <td class="translate" id="cell">hello cell</td>
      </tr>
      </tbody>
      </table>
      </body>
      </html>





      How can I solve this problem? I have tried everything that I have thought of :(. Please help










      share|improve this question
















      I have a problem that I'm trying to solve but have been stuck so far.



      I have a table that I use a little trick on it; this results in my table contains the style of



      "transform: translate(0,0)"


      for a bunch of cells. This is where the problem occurs. I'm having a tooltip in it, which requires position absolute to work. But so far, the tooltip got completely hidden by the translated element. You can see the problem through this:






      th, td 
      padding: 20px


      #cell
      background-color: lightblue;


      .parent
      position: relative;


      .translate
      transform: translate(0,0);


      .overflow
      position: absolute;
      bottom: -20px;
      left: 0;

      <html>
      <head></head>
      <body>
      <table border="1">
      <thead>
      <tr>
      <th><p>Hi</p></th>
      <th class="parent translate">
      <p>Hello</p>
      <div class="overflow">Overflow text</div>
      </th>
      </tr>
      </thead>
      <tbody>
      <tr>
      <td>hello cell</td>
      <td class="translate" id="cell">hello cell</td>
      </tr>
      </tbody>
      </table>
      </body>
      </html>





      How can I solve this problem? I have tried everything that I have thought of :(. Please help






      th, td 
      padding: 20px


      #cell
      background-color: lightblue;


      .parent
      position: relative;


      .translate
      transform: translate(0,0);


      .overflow
      position: absolute;
      bottom: -20px;
      left: 0;

      <html>
      <head></head>
      <body>
      <table border="1">
      <thead>
      <tr>
      <th><p>Hi</p></th>
      <th class="parent translate">
      <p>Hello</p>
      <div class="overflow">Overflow text</div>
      </th>
      </tr>
      </thead>
      <tbody>
      <tr>
      <td>hello cell</td>
      <td class="translate" id="cell">hello cell</td>
      </tr>
      </tbody>
      </table>
      </body>
      </html>





      th, td 
      padding: 20px


      #cell
      background-color: lightblue;


      .parent
      position: relative;


      .translate
      transform: translate(0,0);


      .overflow
      position: absolute;
      bottom: -20px;
      left: 0;

      <html>
      <head></head>
      <body>
      <table border="1">
      <thead>
      <tr>
      <th><p>Hi</p></th>
      <th class="parent translate">
      <p>Hello</p>
      <div class="overflow">Overflow text</div>
      </th>
      </tr>
      </thead>
      <tbody>
      <tr>
      <td>hello cell</td>
      <td class="translate" id="cell">hello cell</td>
      </tr>
      </tbody>
      </table>
      </body>
      </html>






      html css css-transforms






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 1:13









      Temani Afif

      101k11 gold badges66 silver badges114 bronze badges




      101k11 gold badges66 silver badges114 bronze badges










      asked Mar 28 at 0:53









      Tree NguyenTree Nguyen

      7166 silver badges27 bronze badges




      7166 silver badges27 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          2















          Simply increase the z-index of the parent element






          th, td 
          padding: 20px


          #cell
          background-color: lightblue;


          .parent
          position: relative;
          z-index:2;


          .translate
          transform: translate(0,0);


          .overflow
          position: absolute;
          bottom: -20px;
          left: 0;

          <html>
          <head></head>
          <body>
          <table border="1">
          <thead>
          <tr>
          <th><p>Hi</p></th>
          <th class="parent translate">
          <p>Hello</p>
          <div class="overflow">Overflow text</div>
          </th>
          </tr>
          </thead>
          <tbody>
          <tr>
          <td>hello cell</td>
          <td class="translate" id="cell">hello cell</td>
          </tr>
          </tbody>
          </table>
          </body>
          </html>





          You are facing the logical result of the painting order where the transformed element are painted after the positioned one since it comes later in the DOM tree and since there is no z-index specified.




          Also note that adding z-index to the tooltip won't work because transform create a stacking context so z-index will place the tooltip inside that stacking context which is already placed below the #cell.






          th, td 
          padding: 20px


          #cell
          background-color: lightblue;


          .parent
          position: relative;


          .translate
          transform: translate(0,0);


          .overflow
          position: absolute;
          bottom: -20px;
          left: 0;
          z-index:9999;

          <html>
          <head></head>
          <body>
          <table border="1">
          <thead>
          <tr>
          <th><p>Hi</p></th>
          <th class="parent translate">
          <p>Hello</p>
          <div class="overflow">Overflow text</div>
          </th>
          </tr>
          </thead>
          <tbody>
          <tr>
          <td>hello cell</td>
          <td class="translate" id="cell">hello cell</td>
          </tr>
          </tbody>
          </table>
          </body>
          </html>






          Related questions for more details:



          'transform3d' not working with position: fixed children



          Why elements with any z-index value can never cover its child?



          I have position but z index is not working






          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%2f55388618%2fabsolute-div-got-covered-by-translated-element%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2















            Simply increase the z-index of the parent element






            th, td 
            padding: 20px


            #cell
            background-color: lightblue;


            .parent
            position: relative;
            z-index:2;


            .translate
            transform: translate(0,0);


            .overflow
            position: absolute;
            bottom: -20px;
            left: 0;

            <html>
            <head></head>
            <body>
            <table border="1">
            <thead>
            <tr>
            <th><p>Hi</p></th>
            <th class="parent translate">
            <p>Hello</p>
            <div class="overflow">Overflow text</div>
            </th>
            </tr>
            </thead>
            <tbody>
            <tr>
            <td>hello cell</td>
            <td class="translate" id="cell">hello cell</td>
            </tr>
            </tbody>
            </table>
            </body>
            </html>





            You are facing the logical result of the painting order where the transformed element are painted after the positioned one since it comes later in the DOM tree and since there is no z-index specified.




            Also note that adding z-index to the tooltip won't work because transform create a stacking context so z-index will place the tooltip inside that stacking context which is already placed below the #cell.






            th, td 
            padding: 20px


            #cell
            background-color: lightblue;


            .parent
            position: relative;


            .translate
            transform: translate(0,0);


            .overflow
            position: absolute;
            bottom: -20px;
            left: 0;
            z-index:9999;

            <html>
            <head></head>
            <body>
            <table border="1">
            <thead>
            <tr>
            <th><p>Hi</p></th>
            <th class="parent translate">
            <p>Hello</p>
            <div class="overflow">Overflow text</div>
            </th>
            </tr>
            </thead>
            <tbody>
            <tr>
            <td>hello cell</td>
            <td class="translate" id="cell">hello cell</td>
            </tr>
            </tbody>
            </table>
            </body>
            </html>






            Related questions for more details:



            'transform3d' not working with position: fixed children



            Why elements with any z-index value can never cover its child?



            I have position but z index is not working






            share|improve this answer































              2















              Simply increase the z-index of the parent element






              th, td 
              padding: 20px


              #cell
              background-color: lightblue;


              .parent
              position: relative;
              z-index:2;


              .translate
              transform: translate(0,0);


              .overflow
              position: absolute;
              bottom: -20px;
              left: 0;

              <html>
              <head></head>
              <body>
              <table border="1">
              <thead>
              <tr>
              <th><p>Hi</p></th>
              <th class="parent translate">
              <p>Hello</p>
              <div class="overflow">Overflow text</div>
              </th>
              </tr>
              </thead>
              <tbody>
              <tr>
              <td>hello cell</td>
              <td class="translate" id="cell">hello cell</td>
              </tr>
              </tbody>
              </table>
              </body>
              </html>





              You are facing the logical result of the painting order where the transformed element are painted after the positioned one since it comes later in the DOM tree and since there is no z-index specified.




              Also note that adding z-index to the tooltip won't work because transform create a stacking context so z-index will place the tooltip inside that stacking context which is already placed below the #cell.






              th, td 
              padding: 20px


              #cell
              background-color: lightblue;


              .parent
              position: relative;


              .translate
              transform: translate(0,0);


              .overflow
              position: absolute;
              bottom: -20px;
              left: 0;
              z-index:9999;

              <html>
              <head></head>
              <body>
              <table border="1">
              <thead>
              <tr>
              <th><p>Hi</p></th>
              <th class="parent translate">
              <p>Hello</p>
              <div class="overflow">Overflow text</div>
              </th>
              </tr>
              </thead>
              <tbody>
              <tr>
              <td>hello cell</td>
              <td class="translate" id="cell">hello cell</td>
              </tr>
              </tbody>
              </table>
              </body>
              </html>






              Related questions for more details:



              'transform3d' not working with position: fixed children



              Why elements with any z-index value can never cover its child?



              I have position but z index is not working






              share|improve this answer





























                2














                2










                2









                Simply increase the z-index of the parent element






                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;
                z-index:2;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>





                You are facing the logical result of the painting order where the transformed element are painted after the positioned one since it comes later in the DOM tree and since there is no z-index specified.




                Also note that adding z-index to the tooltip won't work because transform create a stacking context so z-index will place the tooltip inside that stacking context which is already placed below the #cell.






                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;
                z-index:9999;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>






                Related questions for more details:



                'transform3d' not working with position: fixed children



                Why elements with any z-index value can never cover its child?



                I have position but z index is not working






                share|improve this answer















                Simply increase the z-index of the parent element






                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;
                z-index:2;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>





                You are facing the logical result of the painting order where the transformed element are painted after the positioned one since it comes later in the DOM tree and since there is no z-index specified.




                Also note that adding z-index to the tooltip won't work because transform create a stacking context so z-index will place the tooltip inside that stacking context which is already placed below the #cell.






                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;
                z-index:9999;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>






                Related questions for more details:



                'transform3d' not working with position: fixed children



                Why elements with any z-index value can never cover its child?



                I have position but z index is not working






                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;
                z-index:2;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>





                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;
                z-index:2;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>





                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;
                z-index:9999;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>





                th, td 
                padding: 20px


                #cell
                background-color: lightblue;


                .parent
                position: relative;


                .translate
                transform: translate(0,0);


                .overflow
                position: absolute;
                bottom: -20px;
                left: 0;
                z-index:9999;

                <html>
                <head></head>
                <body>
                <table border="1">
                <thead>
                <tr>
                <th><p>Hi</p></th>
                <th class="parent translate">
                <p>Hello</p>
                <div class="overflow">Overflow text</div>
                </th>
                </tr>
                </thead>
                <tbody>
                <tr>
                <td>hello cell</td>
                <td class="translate" id="cell">hello cell</td>
                </tr>
                </tbody>
                </table>
                </body>
                </html>






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 28 at 1:21

























                answered Mar 28 at 1:01









                Temani AfifTemani Afif

                101k11 gold badges66 silver badges114 bronze badges




                101k11 gold badges66 silver badges114 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    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%2f55388618%2fabsolute-div-got-covered-by-translated-element%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

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현