开发者

CSS not working on Facebook page

开发者 https://www.devze.com 2023-03-09 03:43 出处:网络
For some reason, the rollover CSS I\'m using won\'t work through Facebook\'s rendering engine. Am I doing something wrong or is there just an inherent problem with certain CSS properties on custom Fac

For some reason, the rollover CSS I'm using won't work through Facebook's rendering engine. Am I doing something wrong or is there just an inherent problem with certain CSS properties on custom Facebook pages? Here's my code:

<link rel="stylesheet" href="http://epandits.com/topdish/newCascadeStyleSheet1.css" type="text/css" />

<table id="wrapper">
    <tr>
        <td class="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
        开发者_JAVA百科        <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
        <td class ="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
    </tr>
    <tr>
        <td class="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
        <td class ="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
    </tr>
</table>


maybe do without css with something crazy like this:

http://jsfiddle.net/ColbyGold/KfZmc/

0

精彩评论

暂无评论...
验证码 换一张
取 消