Jump to content

~Shinta

Members
  • Posts

    132
  • Joined

  • Last visited

Posts posted by ~Shinta

  1. XML tags in html documents are invalid as far as I know. They are also Microsoft proprietary. That is why Firefox doesn't support them. Also Opera has full XML support, more than Firefox I think. Firefox didn't have XSLT until a year ago.

    IE6 has a full support for XML which is why it's the only browser showing this.
    It's IE that has the crappy XML support. No XSLT and many other things.
  2. Hi, I just noticed 2 minutes ago. When I drag and drop any image with an alt attribute to the url bar, instead of just displaying the uri in "href", it carries over the contents of alt as well. Like try dragging and dropping the w3schools banner onto your url bar. Instead of displaying "http://www.w3schools.com/images/logo_new2.jpg" it shows "http://www.w3schools.com/images/logo_new2.jpgW3Schools". (This can be a minor problem for me when websites I leach from like 4chan and wakachan catch up with standards and start using alt attributes =0.) Can somebody give me a workaround maybe?

  3. Have you tried tables? It would simplify things.
    <style type="text/css">.maintable {  width: 100%;}.topcell {  text-align: center;  font-size: 20px;}.middlecell {  width: 73%;}.bottomheight {  height: 200px;}</style><table border="1" class="maintable">  <tr>    <td colspan="3" class="topcell">      Header Content Table    </td>  </tr>  <tr class="bottomheight">    <td>      Content Left    </td>    <td class="middlecell">      Content Middle    </td>    <td>      Content Right    </td>  </tr></table>

    Tables? Where have you been? :)
×
×
  • Create New...