Выровнять внутреннюю таблицу справа от текста внешней таблицы td - PullRequest
0 голосов
/ 02 марта 2012

У меня есть таблица с одной строкой и одной ячейкой. В этой ячейке есть текст и другая таблица. Я ожидаю, что внутренняя таблица должна располагаться справа от текста, но она переходит на следующую строку. достичь этого?

Вот мой код ...

<!DOCTYPE HTML>
    <html>
     <head>
      <title> New Document </title>
      <meta name="Generator" content="EditPlus">
      <meta name="Author" content="">
      <meta name="Keywords" content="">
      <meta name="Description" content="">
     </head>

     <body>
      <table border="1">
       <tr>
        <td>
          Here is some text 
          <!-- Inner Table. This table should come at right to the above text-->
          <table style="border:1px solid blue;">
            <tr>
             <td>1</td>
             <td>Krish</td>
            </tr>

             <tr>
             <td>2</td>
             <td>Alex</td>
            </tr>

          </table>
        </td>
       </tr>
      </table>

     </body>
    </html>

1 Ответ

1 голос
/ 02 марта 2012

вы должны указать float:right или float:left

В соответствии с вашим HTML, укажите таблицу с float:right как

<table style="border:1px solid blue;float:right;">
...