Language: HtmlPhp
Zen and CSS Problems
<html> <head> <title></title> <style> .ULCtrlList { list-style-type: none; display: inline; } .LICtrlList { display: inline; } .CtrlAnch { background-image: url('/stc/images/ctrls.png'); background-repeat: none; height: 16px; width: 16px; text-decoration: none; display: block; } #Edit { background-position: -16px 0; } #Edit:hover { background-position:-16px -16px; } #Delete { background-position: 0 0; } #Delete:hover { background-position:0 -16px; } </style> </head> <body> <table> <tr> <td>Name:</td> <td>text</td> <td> <ul class="ULCtrlList"> <li class="LICtrlList"> <a HREF='#' id='Edit' class="CtrlAnch"> </a> </li> <li class="LICtrlList"> <a HREF='#' id='Delete' class="CtrlAnch"> </a> <li> </ul> </td> </tr> </table> </body> </html>
Tags:
Description:
Why is this not working? The images in the a tags appear vertically stacked rather than horizontal, and I want them horizontal.
Report Abuse
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search

