AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • Início
  • system&network
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • Início
  • system&network
    • Recentes
    • Highest score
    • tags
  • Ubuntu
    • Recentes
    • Highest score
    • tags
  • Unix
    • Recentes
    • tags
  • DBA
    • Recentes
    • tags
  • Computer
    • Recentes
    • tags
  • Coding
    • Recentes
    • tags
Início / coding / Perguntas / 76995231
Accepted
Dennis
Dennis
Asked: 2023-08-29 02:23:43 +0800 CST2023-08-29 02:23:43 +0800 CST 2023-08-29 02:23:43 +0800 CST

float:left não funciona para mim em HTML CSS

  • 772

Desenvolvi um script para apresentar um chat ativo no YouTube junto com um resumo de quem está no chat. A ideia é que a tabela de itens do chat apareça à direita da lista de membros do chat. No entanto, nas versões mais recentes do Safari e no Chrome, o float parece não estar funcionando e as tabelas são apresentadas uma acima da outra. Aqui está um exemplo de extrato do HTML gerado que apresenta o problema.

body {
  background-image: '/bg-standard.jpg';
  background-attachment: fixed;
}

.twoTables {
  margin-left: -5px;
  margin-right: -5px;
}

.tableLeft {
  float: left;
  width: 50%;
  padding: 5px;
}

.tableRight {
  float: left;
  width: 50%;
  padding: 5px;
}

.twoTables::after {
  content: "";
  clear: both;
  display: table;
}

headingLink {
  color: white;
  text-decoration: none;
}

.dummyRow {
  line-height: 1px;
  visibility: hidden;
}

.freeze-table {
  border-spacing: 0;
  border-collapse: collapse;
  padding: 0;
}

thead th {
  top: 0;
  position: sticky;
  background-color: #666;
  color: #fff;
  z-index: 20;
  min-height: 30px;
  height: 30px;
  text-align: left;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

xth,
xtd {
  padding: 0 5px;
  border-collapse: collapse;
  font-size: 100%;
  outline: 1px solid #ccc;
  border: none;
  outline-offset: -1px;
  padding-left: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

th,
td {
  padding: 0 0px;
  border-collapse: collapse;
  font-size: 100%;
  border: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 5px;
}

tr {
  min-height: 25px;
  height: 25px;
  background-color: #ffffff
}

pageElement {
  display: flex;
  flex-wrap: nowrap;
  align-items: center
}

a:link {
  color: white;
  text-decoration: none;
}

* {
  padding: 0;
  margin: 0;
}

.fit {
  /* set relative picture size */
  max-width: 100%;
  max-height: 100%;
}

.center {
  display: block;
  margin: auto;
}

.imgbox {
  display: grid;
  width: 100%;
}

.center-fit {
  max-width: 100%;
  max-height: 100vh;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .tableLeft {
    width: 100%;
  }
  .tableRight {
    width: 100%;
  }
}
<form method='POST' action=/ YouTube/latestChats.php>
  <table style='border-collapse:collapse;'>
    <tr>
      <td><input type='checkbox' name='highlightMsg' id='highlightMsg' checked>
        <label for='highlightMsg'>Highlight messages</label></td>
      <td><input type='checkbox' name='msgUseRegEx' id='msgUseRegEx'>
        <label for='msgUseRegEx'>Use REGEX</label></td>
      <td>Message filter</td>
      <td><input type='text' name='msg' value='request' size=30></td>
    </tr>
    <tr>
      <td><input type='checkbox' name='invertOrder' id='invertOrder' checked>
        <label for='invertOrder'>Latest first</label></td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
      <td>
        <input type='radio' name='emoteMgmt' value='text'>&nbsp;Emoticons&nbsp;as&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;
        <input type='radio' name='emoteMgmt' checked value='icon'>&nbsp;Emoticons&nbsp;as&nbsp;image&nbsp;&nbsp;&nbsp;&nbsp;
        <input type='radio' name='emoteMgmt' value='strip'>&nbsp;Strip&nbsp;emoticons&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
      </td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
  </table>
  <br>
  <input type='submit' name='submit' value='Submit'> &nbsp;&nbsp;&nbsp;
  <input type='submit' name='backToYouTubeStuff' value='Go Back'>
  <br>
</form>
<br>
<div class='twoTables'>
  <div id='watchers' class='tableLeft'>
    <table>
      <tr>
        <th>Watcher</th>
        <th>*</th>
        <th>Joined</th>
        <th>Latest</th>
      </tr>
      <tr>
        <td>request</td>
        <td>*</td>
        <td>07:47</td>
        <td>1805.0m</td>
      </tr>
      <tr>
        <td>Joe Something - guru</td>
        <td>*</td>
        <td>07:44</td>
        <td>1805.2m</td>
      </tr>
      <tr>
        <td>(<span style="font-weight:bold; font-style:italic;">Tony</span>) Tropic</td>
        <td>*</td>
        <td>06:48</td>
        <td>1839.9m</td>
      </tr>
    </table>
  </div>
  <div id='chats' class='tableRight'>
    <table style='border-collapse:collapse;border:0px solid white;'>
      <tr style='color:white; border:0px;'>
        <td colspan=3 style='text-align:center;background-color:darkblue;color:white;font-size:115%;font-weight:bold;border:solid white;'>2023-08-27</td>
        <td colspan=2 style='background-color:darkblue;color:white;font-size:115%;font-weight:bold;border:solid white;'><a href='https://youtu.be/ForShow'>2023-08-27 Livestream Title (23-074)</a></td>
      </tr>

      <tr>
        <td style='text-align:right;color:Blue;'>1</td>
        <td style='text-align:center;color:Blue;'>07:47</td>
        <td style='text-align:right;color:Blue;'>(58:51)</td>
        <td style='text-align:left;color:Blue;'>Tropic</td>
        <td style='text-align:left;color:Blue;'>
          <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3531' target='_blank'>_&nbsp;
               Ty dad</a></td>
      </tr>
      <tr>
        <td style='text-align:right;color:Blue;'>2</td>
        <td style='text-align:center;color:Blue;'>07:47</td>
        <td style='text-align:right;color:Blue;'>(58:41)</td>
        <td style='text-align:left;color:Blue;'>Joe Something</td>
        <td style='text-align:left;color:Blue;'>
          <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3521' target='_blank'>_&nbsp;
               c ya guys</a></td>
      </tr>
      <tr>
        <td style='text-align:right;color:Blue;'>3</td>
        <td style='text-align:center;color:Blue;'>07:47</td>
        <td style='text-align:right;color:Blue;'>(58:37)</td>
        <td style='text-align:left;color:Blue;'>request</td>
        <td style='text-align:left;color:Blue;'>
          <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3517' target='_blank'>_&nbsp;
               Sold it Brad</a></td>
      </tr>
      <tr>
        <td style='text-align:right;color:Blue;'>5</td>
        <td style='text-align:center;color:Blue;'>07:46</td>
        <td style='text-align:right;color:Blue;'>(58:28)</td>
        <td style='text-align:left;color:Blue;'>Silent Chatter</td>
        <td style='text-align:left;color:Blue;'>
          <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3508' target='_blank'>_&nbsp;
               HAPPY Bday Son</a></td>
      </tr>
      <tr>
        <td style='text-align:right;color:Blue;'>6</td>
        <td style='text-align:center;color:Blue;'>07:46</td>
        <td style='text-align:right;color:Blue;'>(58:27)</td>
        <td style='text-align:left;color:Blue;'>request</td>
        <td style='text-align:left;color:Blue;'>
          <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3507' target='_blank'>_&nbsp;
               good job george</a></td>
      </tr>
      <tr>
        <td style='text-align:right;color:Blue;'>7</td>
        <td style='text-align:center;color:Blue;'>07:46</td>
        <td style='text-align:right;color:Blue;'>(58:23)</td>
        <td style='text-align:left;color:Blue;'>Danny Incognito</td>
        <td style='text-align:left;color:Blue;'>
          <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3503' target='_blank'>_&nbsp;
               bye bye guys</a></td>
      </tr>
      <tr>
        <th colspan=5 style='background-color: #666 ;color: #fff ;z-index: 20 ;min-height: 30px ;height: 30px ;text-align: left ;'>End of data. </th>
      </tr>
    </table>
  </div>
</div>

Procurei soluções para problemas semelhantes, mas nenhuma delas parece corresponder exatamente ao meu problema, exceto esta . Para este, tenho dois problemas com a resposta aceita ("você precisa agrupar seu texto dentro de div e flutuar para a esquerda enquanto o wrapper div deve ter altura...): (1) Meu código já está agrupado e especificando float; e (2) não vi evidências de que devo especificar uma altura. Acho que esta é mais uma variação do problema. Depois, há o comentário incômodo de que a resposta aceita não funciona.

Estou fazendo algo obviamente errado aqui no que diz respeito a fazer o float funcionar? Eu não vejo nada.

NOTA: Existem muitos atributos de estilo definidos, mas não usados ​​aqui. O produto final real é capaz de muito mais do que apenas este par de mesas.

Obrigado por qualquer visão.

html
  • 1 1 respostas
  • 20 Views

1 respostas

  • Voted
  1. Best Answer
    j08691
    2023-08-29T02:48:46+08:002023-08-29T02:48:46+08:00

    Remova a largura de 50% nos contêineres da tabela ou defina o tamanho da caixa como border-box. As tabelas flutuarão como estão, mas ao definir a largura como estão, elas serão muito largas e quebradas.

    Exemplo 1

    body {
      background-image: '/bg-standard.jpg';
      background-attachment: fixed;
    }
    
    .twoTables {
      margin-left: -5px;
      margin-right: -5px;
    }
    
    .tableLeft {
      float: left;
      xwidth: 50%;
      padding: 5px;
    }
    
    .tableRight {
      float: left;
      width: 50%;
      padding: 5px;
    }
    
    .twoTables::after {
      content: "";
      clear: both;
      display: table;
    }
    
    headingLink {
      color: white;
      text-decoration: none;
    }
    
    .dummyRow {
      line-height: 1px;
      visibility: hidden;
    }
    
    .freeze-table {
      border-spacing: 0;
      border-collapse: collapse;
      padding: 0;
    }
    
    thead th {
      top: 0;
      position: sticky;
      background-color: #666;
      color: #fff;
      z-index: 20;
      min-height: 30px;
      height: 30px;
      text-align: left;
    }
    
    tr:nth-child(even) {
      background-color: #f2f2f2;
    }
    
    xth,
    xtd {
      padding: 0 5px;
      border-collapse: collapse;
      font-size: 100%;
      outline: 1px solid #ccc;
      border: none;
      outline-offset: -1px;
      padding-left: 5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    th,
    td {
      padding: 0 0px;
      border-collapse: collapse;
      font-size: 100%;
      border: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding-left: 5px;
    }
    
    tr {
      min-height: 25px;
      height: 25px;
      background-color: #ffffff
    }
    
    pageElement {
      display: flex;
      flex-wrap: nowrap;
      align-items: center
    }
    
    a:link {
      color: white;
      text-decoration: none;
    }
    
    * {
      padding: 0;
      margin: 0;
    }
    
    .fit {
      /* set relative picture size */
      max-width: 100%;
      max-height: 100%;
    }
    
    .center {
      display: block;
      margin: auto;
    }
    
    .imgbox {
      display: grid;
      width: 100%;
    }
    
    .center-fit {
      max-width: 100%;
      max-height: 100vh;
      margin: auto;
    }
    
    @media screen and (max-width: 600px) {
      .tableLeft {
        width: 100%;
      }
      .tableRight {
        width: 100%;
      }
    }
    <form method='POST' action=/ YouTube/latestChats.php>
      <table style='border-collapse:collapse;'>
        <tr>
          <td><input type='checkbox' name='highlightMsg' id='highlightMsg' checked>
            <label for='highlightMsg'>Highlight messages</label></td>
          <td><input type='checkbox' name='msgUseRegEx' id='msgUseRegEx'>
            <label for='msgUseRegEx'>Use REGEX</label></td>
          <td>Message filter</td>
          <td><input type='text' name='msg' value='request' size=30></td>
        </tr>
        <tr>
          <td><input type='checkbox' name='invertOrder' id='invertOrder' checked>
            <label for='invertOrder'>Latest first</label></td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td>
            <input type='radio' name='emoteMgmt' value='text'>&nbsp;Emoticons&nbsp;as&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;
            <input type='radio' name='emoteMgmt' checked value='icon'>&nbsp;Emoticons&nbsp;as&nbsp;image&nbsp;&nbsp;&nbsp;&nbsp;
            <input type='radio' name='emoteMgmt' value='strip'>&nbsp;Strip&nbsp;emoticons&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          </td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table>
      <br>
      <input type='submit' name='submit' value='Submit'> &nbsp;&nbsp;&nbsp;
      <input type='submit' name='backToYouTubeStuff' value='Go Back'>
      <br>
    </form>
    <br>
    <div class='twoTables'>
      <div id='watchers' class='tableLeft'>
        <table>
          <tr>
            <th>Watcher</th>
            <th>*</th>
            <th>Joined</th>
            <th>Latest</th>
          </tr>
          <tr>
            <td>request</td>
            <td>*</td>
            <td>07:47</td>
            <td>1805.0m</td>
          </tr>
          <tr>
            <td>Joe Something - guru</td>
            <td>*</td>
            <td>07:44</td>
            <td>1805.2m</td>
          </tr>
          <tr>
            <td>(<span style="font-weight:bold; font-style:italic;">Tony</span>) Tropic</td>
            <td>*</td>
            <td>06:48</td>
            <td>1839.9m</td>
          </tr>
        </table>
      </div>
      <div id='chats' class='tableRight'>
        <table style='border-collapse:collapse;border:0px solid white;'>
          <tr style='color:white; border:0px;'>
            <td colspan=3 style='text-align:center;background-color:darkblue;color:white;font-size:115%;font-weight:bold;border:solid white;'>2023-08-27</td>
            <td colspan=2 style='background-color:darkblue;color:white;font-size:115%;font-weight:bold;border:solid white;'><a href='https://youtu.be/ForShow'>2023-08-27 Livestream Title (23-074)</a></td>
          </tr>
    
          <tr>
            <td style='text-align:right;color:Blue;'>1</td>
            <td style='text-align:center;color:Blue;'>07:47</td>
            <td style='text-align:right;color:Blue;'>(58:51)</td>
            <td style='text-align:left;color:Blue;'>Tropic</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3531' target='_blank'>_&nbsp;
                   Ty dad</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>2</td>
            <td style='text-align:center;color:Blue;'>07:47</td>
            <td style='text-align:right;color:Blue;'>(58:41)</td>
            <td style='text-align:left;color:Blue;'>Joe Something</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3521' target='_blank'>_&nbsp;
                   c ya guys</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>3</td>
            <td style='text-align:center;color:Blue;'>07:47</td>
            <td style='text-align:right;color:Blue;'>(58:37)</td>
            <td style='text-align:left;color:Blue;'>request</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3517' target='_blank'>_&nbsp;
                   Sold it Brad</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>5</td>
            <td style='text-align:center;color:Blue;'>07:46</td>
            <td style='text-align:right;color:Blue;'>(58:28)</td>
            <td style='text-align:left;color:Blue;'>Silent Chatter</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3508' target='_blank'>_&nbsp;
                   HAPPY Bday Son</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>6</td>
            <td style='text-align:center;color:Blue;'>07:46</td>
            <td style='text-align:right;color:Blue;'>(58:27)</td>
            <td style='text-align:left;color:Blue;'>request</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3507' target='_blank'>_&nbsp;
                   good job george</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>7</td>
            <td style='text-align:center;color:Blue;'>07:46</td>
            <td style='text-align:right;color:Blue;'>(58:23)</td>
            <td style='text-align:left;color:Blue;'>Danny Incognito</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3503' target='_blank'>_&nbsp;
                   bye bye guys</a></td>
          </tr>
          <tr>
            <th colspan=5 style='background-color: #666 ;color: #fff ;z-index: 20 ;min-height: 30px ;height: 30px ;text-align: left ;'>End of data. </th>
          </tr>
        </table>
      </div>
    </div>

    Exemplo 2

    * {
      box-sizing: border-box;
    }
    
    body {
      background-image: '/bg-standard.jpg';
      background-attachment: fixed;
    }
    
    .twoTables {
      margin-left: -5px;
      margin-right: -5px;
    }
    
    .tableLeft {
      float: left;
      width: 50%;
      padding: 5px;
    }
    
    .tableRight {
      float: left;
      width: 50%;
      padding: 5px;
    }
    
    .twoTables::after {
      content: "";
      clear: both;
      display: table;
    }
    
    headingLink {
      color: white;
      text-decoration: none;
    }
    
    .dummyRow {
      line-height: 1px;
      visibility: hidden;
    }
    
    .freeze-table {
      border-spacing: 0;
      border-collapse: collapse;
      padding: 0;
    }
    
    thead th {
      top: 0;
      position: sticky;
      background-color: #666;
      color: #fff;
      z-index: 20;
      min-height: 30px;
      height: 30px;
      text-align: left;
    }
    
    tr:nth-child(even) {
      background-color: #f2f2f2;
    }
    
    xth,
    xtd {
      padding: 0 5px;
      border-collapse: collapse;
      font-size: 100%;
      outline: 1px solid #ccc;
      border: none;
      outline-offset: -1px;
      padding-left: 5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    th,
    td {
      padding: 0 0px;
      border-collapse: collapse;
      font-size: 100%;
      border: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding-left: 5px;
    }
    
    tr {
      min-height: 25px;
      height: 25px;
      background-color: #ffffff
    }
    
    pageElement {
      display: flex;
      flex-wrap: nowrap;
      align-items: center
    }
    
    a:link {
      color: white;
      text-decoration: none;
    }
    
    * {
      padding: 0;
      margin: 0;
    }
    
    .fit {
      /* set relative picture size */
      max-width: 100%;
      max-height: 100%;
    }
    
    .center {
      display: block;
      margin: auto;
    }
    
    .imgbox {
      display: grid;
      width: 100%;
    }
    
    .center-fit {
      max-width: 100%;
      max-height: 100vh;
      margin: auto;
    }
    
    @media screen and (max-width: 600px) {
      .tableLeft {
        width: 100%;
      }
      .tableRight {
        width: 100%;
      }
    }
    <form method='POST' action=/ YouTube/latestChats.php>
      <table style='border-collapse:collapse;'>
        <tr>
          <td><input type='checkbox' name='highlightMsg' id='highlightMsg' checked>
            <label for='highlightMsg'>Highlight messages</label></td>
          <td><input type='checkbox' name='msgUseRegEx' id='msgUseRegEx'>
            <label for='msgUseRegEx'>Use REGEX</label></td>
          <td>Message filter</td>
          <td><input type='text' name='msg' value='request' size=30></td>
        </tr>
        <tr>
          <td><input type='checkbox' name='invertOrder' id='invertOrder' checked>
            <label for='invertOrder'>Latest first</label></td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td>
            <input type='radio' name='emoteMgmt' value='text'>&nbsp;Emoticons&nbsp;as&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;
            <input type='radio' name='emoteMgmt' checked value='icon'>&nbsp;Emoticons&nbsp;as&nbsp;image&nbsp;&nbsp;&nbsp;&nbsp;
            <input type='radio' name='emoteMgmt' value='strip'>&nbsp;Strip&nbsp;emoticons&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          </td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table>
      <br>
      <input type='submit' name='submit' value='Submit'> &nbsp;&nbsp;&nbsp;
      <input type='submit' name='backToYouTubeStuff' value='Go Back'>
      <br>
    </form>
    <br>
    <div class='twoTables'>
      <div id='watchers' class='tableLeft'>
        <table>
          <tr>
            <th>Watcher</th>
            <th>*</th>
            <th>Joined</th>
            <th>Latest</th>
          </tr>
          <tr>
            <td>request</td>
            <td>*</td>
            <td>07:47</td>
            <td>1805.0m</td>
          </tr>
          <tr>
            <td>Joe Something - guru</td>
            <td>*</td>
            <td>07:44</td>
            <td>1805.2m</td>
          </tr>
          <tr>
            <td>(<span style="font-weight:bold; font-style:italic;">Tony</span>) Tropic</td>
            <td>*</td>
            <td>06:48</td>
            <td>1839.9m</td>
          </tr>
        </table>
      </div>
      <div id='chats' class='tableRight'>
        <table style='border-collapse:collapse;border:0px solid white;'>
          <tr style='color:white; border:0px;'>
            <td colspan=3 style='text-align:center;background-color:darkblue;color:white;font-size:115%;font-weight:bold;border:solid white;'>2023-08-27</td>
            <td colspan=2 style='background-color:darkblue;color:white;font-size:115%;font-weight:bold;border:solid white;'><a href='https://youtu.be/ForShow'>2023-08-27 Livestream Title (23-074)</a></td>
          </tr>
    
          <tr>
            <td style='text-align:right;color:Blue;'>1</td>
            <td style='text-align:center;color:Blue;'>07:47</td>
            <td style='text-align:right;color:Blue;'>(58:51)</td>
            <td style='text-align:left;color:Blue;'>Tropic</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3531' target='_blank'>_&nbsp;
                   Ty dad</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>2</td>
            <td style='text-align:center;color:Blue;'>07:47</td>
            <td style='text-align:right;color:Blue;'>(58:41)</td>
            <td style='text-align:left;color:Blue;'>Joe Something</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3521' target='_blank'>_&nbsp;
                   c ya guys</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>3</td>
            <td style='text-align:center;color:Blue;'>07:47</td>
            <td style='text-align:right;color:Blue;'>(58:37)</td>
            <td style='text-align:left;color:Blue;'>request</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3517' target='_blank'>_&nbsp;
                   Sold it Brad</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>5</td>
            <td style='text-align:center;color:Blue;'>07:46</td>
            <td style='text-align:right;color:Blue;'>(58:28)</td>
            <td style='text-align:left;color:Blue;'>Silent Chatter</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3508' target='_blank'>_&nbsp;
                   HAPPY Bday Son</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>6</td>
            <td style='text-align:center;color:Blue;'>07:46</td>
            <td style='text-align:right;color:Blue;'>(58:27)</td>
            <td style='text-align:left;color:Blue;'>request</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3507' target='_blank'>_&nbsp;
                   good job george</a></td>
          </tr>
          <tr>
            <td style='text-align:right;color:Blue;'>7</td>
            <td style='text-align:center;color:Blue;'>07:46</td>
            <td style='text-align:right;color:Blue;'>(58:23)</td>
            <td style='text-align:left;color:Blue;'>Danny Incognito</td>
            <td style='text-align:left;color:Blue;'>
              <a style='color:blue;text-decoration:none;' href='https://youtu.be/ForShow?t=3503' target='_blank'>_&nbsp;
                   bye bye guys</a></td>
          </tr>
          <tr>
            <th colspan=5 style='background-color: #666 ;color: #fff ;z-index: 20 ;min-height: 30px ;height: 30px ;text-align: left ;'>End of data. </th>
          </tr>
        </table>
      </div>
    </div>

    • 1

relate perguntas

  • Usando o ponto de código para renderizar o ícone delineado em vez de preenchido no Material Design Google Fonts

  • Como fazer tab como uma forma de seta usando css

  • Desenhando linhas inclinadas dentro da tabela em html e css

  • Tabela HTML com 2 linhas de células seguidas

  • Como criar material angular mat-grid-list

Sidebar

Stats

  • Perguntas 205573
  • respostas 270741
  • best respostas 135370
  • utilizador 68524
  • Highest score
  • respostas
  • Marko Smith

    destaque o código em HTML usando <font color="#xxx">

    • 2 respostas
  • Marko Smith

    Por que a resolução de sobrecarga prefere std::nullptr_t a uma classe ao passar {}?

    • 1 respostas
  • Marko Smith

    Você pode usar uma lista de inicialização com chaves como argumento de modelo (padrão)?

    • 2 respostas
  • Marko Smith

    Por que as compreensões de lista criam uma função internamente?

    • 1 respostas
  • Marko Smith

    Estou tentando fazer o jogo pacman usando apenas o módulo Turtle Random e Math

    • 1 respostas
  • Marko Smith

    java.lang.NoSuchMethodError: 'void org.openqa.selenium.remote.http.ClientConfig.<init>(java.net.URI, java.time.Duration, java.time.Duratio

    • 3 respostas
  • Marko Smith

    Por que 'char -> int' é promoção, mas 'char -> short' é conversão (mas não promoção)?

    • 4 respostas
  • Marko Smith

    Por que o construtor de uma variável global não é chamado em uma biblioteca?

    • 1 respostas
  • Marko Smith

    Comportamento inconsistente de std::common_reference_with em tuplas. Qual é correto?

    • 1 respostas
  • Marko Smith

    Somente operações bit a bit para std::byte em C++ 17?

    • 1 respostas
  • Martin Hope
    fbrereto Por que a resolução de sobrecarga prefere std::nullptr_t a uma classe ao passar {}? 2023-12-21 00:31:04 +0800 CST
  • Martin Hope
    比尔盖子 Você pode usar uma lista de inicialização com chaves como argumento de modelo (padrão)? 2023-12-17 10:02:06 +0800 CST
  • Martin Hope
    Amir reza Riahi Por que as compreensões de lista criam uma função internamente? 2023-11-16 20:53:19 +0800 CST
  • Martin Hope
    Michael A formato fmt %H:%M:%S sem decimais 2023-11-11 01:13:05 +0800 CST
  • Martin Hope
    God I Hate Python std::views::filter do C++20 não filtrando a visualização corretamente 2023-08-27 18:40:35 +0800 CST
  • Martin Hope
    LiDa Cute Por que 'char -> int' é promoção, mas 'char -> short' é conversão (mas não promoção)? 2023-08-24 20:46:59 +0800 CST
  • Martin Hope
    jabaa Por que o construtor de uma variável global não é chamado em uma biblioteca? 2023-08-18 07:15:20 +0800 CST
  • Martin Hope
    Panagiotis Syskakis Comportamento inconsistente de std::common_reference_with em tuplas. Qual é correto? 2023-08-17 21:24:06 +0800 CST
  • Martin Hope
    Alex Guteniev Por que os compiladores perdem a vetorização aqui? 2023-08-17 18:58:07 +0800 CST
  • Martin Hope
    wimalopaan Somente operações bit a bit para std::byte em C++ 17? 2023-08-17 17:13:58 +0800 CST

Hot tag

python javascript c++ c# java typescript sql reactjs html

Explore

  • Início
  • Perguntas
    • Recentes
    • Highest score
  • tag
  • help

Footer

AskOverflow.Dev

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve