Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的翻转图像是 350 x 250 透明 .png,里面有一个圆形图像。翻转图像的底部似乎有一个不需要的灰色条...
我在 Dreamweaver 中使用了基本的翻转图像处理,通过单击“插入”-“图像对象”-“翻转图像”,然后按照正确的步骤操作。
尝试添加这个:
a img { border: none; }
有时(不是全部)但有时,Dreamweaver 会在某些图像周围添加边框,尤其是翻转或链接。这行 CSS 删除了所有图像的边框。如果您特别想要某个图像的边框,则必须为该特定图像添加一些 CSS。
将此添加到您的 CSS 中,看看它是否修复了它:
area { outline : none !important; }