suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Wie zentriert man Titel in Mediendimensionen?

Ich möchte eine Mediengröße zentriert in normaler Größe platzieren, und wenn ich die maximale Breite auf 480 ändere, befindet sich die Kopfzeile auf der linken Seite.

Aber es bleibt links hängen. Wie kann ich den Code so ändern, dass der Titel in der Mitte steht, wenn die Größe des Mediums geändert wird?

caption {
   font-family: "Rock Salt", cursive;
   padding: 20px;
   font-style: italic;
   caption-side: Top;
   color: #666;
   text-align: center;
   letter-spacing: 1px;
 }




@media only screen and (max-width: 480px) {
  caption {
    caption-side: Top;
    text-align: center;
    letter-spacing: 1px;
  }
<section id="right"> 
        <table> 
           <caption>Books everyone will enjoy!</caption> 
           <thead> 
              <th colspan="4">Recommended childrens books!</th> 
              <th colspan="2" style="display: none">Recommended childrens books!</th> 
              <tr> 
                 <th colspan="1">Front of the book</th> 
                 <th colspan="1">Title of the book</th> 
                 <th colspan="1">Authors</th> 
                 <th colspan="1">Book Summary</th> 
             </tr> 
           </thead>

P粉316110779P粉316110779329 Tage vor466

Antworte allen(1)Ich werde antworten

  • P粉239089443

    P粉2390894432024-02-27 00:57:01

    您需要将块元素居中:

    @media only screen and (max-width: 480px) {
       caption {
          caption-side: Top;
          text-align: center;
          letter-spacing: 1px;
          margin:0 auto;
    }

    Antwort
    0
  • StornierenAntwort