CSS边框不显示在浏览器中 [英] CSS Border does not show up in browser

查看:264
本文介绍了CSS边框不显示在浏览器中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的边框没有出现在我的图像周围,我不太确定问题可能出在哪里。我只需要照片周围的黑色边框。我的网站是:



无除非已设置边框样式属性,否则边框属性将产生任何效果!


My border is not showing up around my image, I'm not quite sure what the issue could be. I just need a small black border around the photo. My website is http://www.welovetile.com. I can't figure out what the problem could be. Thanks.

CSS:

#kitchen {
        height:250px;
        width:346px;
        background-image:url(images/kitchenbg.jpg);
    }

        #kitchen img
        {   
            top: 50%;
            left: 50%;
            width: 316px;
            height: 228px;
            margin-top:11px;
            margin-left:15px;
            border-color:#000000;
            border-width:thin;
        }

HTML:

<div id="kitchen">
                <img src="images/kitchen.jpg" alt="Kitchen Tile Job"/>
            </div>

解决方案

Borders have three main pieces: a width, a style, and a color; the style is required for any of the others to work.

Try adding the style:

border-style: solid;

Also, you can specify all these in the same line of css:

border: thin solid black;

Updated

As pointed out by Wesley, border-style is the only required one.

From http://www.w3schools.com/css/css_border.asp :

None of the border properties will have ANY effect unless the border-style property is set!

这篇关于CSS边框不显示在浏览器中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆