Advertisement
Guest User

Doctype positioning that breaks css issue

a guest
Jul 2nd, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.56 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <?php
  4. /*
  5. * doctype_test.php
  6. *
  7. * Copyright 2014 Benjamín Ariel Nava Martínez <arielnmz@gmail.com>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  22.  * MA 02110-1301, USA.
  23.  *
  24.  *
  25.  */
  26.  
  27. echo 'This is some text echoed before the doctype';
  28.  
  29. ?>
  30.  
  31. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  32.  
  33. <head>
  34.     <title>sin título</title>
  35.     <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  36.     <meta name="generator" content="Geany 1.24.1" />
  37.     <style>
  38.     body {
  39.         background: #333;
  40.         font-size: 10pt;
  41.         color: white;
  42.         font-family: sans;
  43.     }
  44.     #Table {
  45. <!--
  46.        font-size: inherit;
  47. -->
  48.     }
  49.     </style>
  50. </head>
  51.  
  52. <body>
  53.     <table id="Table"><tr><td>This is some text in the table</td></tr></table>
  54. </body>
  55.  
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement