Better fixed-width table.
authorMike Taylor <mike@indexdata.com>
Fri, 24 Jan 2014 17:09:40 +0000 (17:09 +0000)
committerMike Taylor <mike@indexdata.com>
Fri, 24 Jan 2014 17:09:40 +0000 (17:09 +0000)
Add link to MKWS.

examples/htdocs/auto.html

index 5acbbbf..5135d2f 100644 (file)
@@ -8,18 +8,20 @@
     <link rel="stylesheet" type="text/css" href="//mkws.indexdata.com/mkws.css" />
     <script type="text/javascript" src="//mkws.indexdata.com/mkws-complete.js"></script>
     <style type="text/css">
-      td { vertical-align: top }
+      td { vertical-align: top; overflow: word-break }
     </style>
   </head>
   <body>
     <h1>A site about stuff</h1>
-    <table border="1" width="100%">
+    <table border="1" width="100%" style="table-layout:fixed">
+      <col width="50%"/>
+      <col width="50%"/>
       <tr>
-       <td width="50%">
+       <td>
          <h2>Welcome</h2>
          Main site content goes here.
        </td>
-       <td width="50%">
+       <td>
          <h2>News</h2>
 
 
@@ -33,5 +35,8 @@
        </td>
       </tr>
     </table>
+    <p style="color:grey">
+      <a href="http://mkws.indexdata.com/">About MKWS</p>
+    </p>
   </body>
 </html>