Home  >  Article  >  Web Front-end  >  How to remove edge line in css_html/css_WEB-ITnose

How to remove edge line in css_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:58:211644browse


It’s a bit ugly. How to remove it?


Reply to discussion (solution)

#logo        {            width: 900px;            height: 300px;            margin: 0 auto;            background-image: url(images/bg.png);        }

border:0px;

border:0;
or
border:none;

border:0px;



Agree!

#logo        {            width: 900px;            height: 300px;            margin: 0 auto;            background-image: url(images/bg.png);border:0px;//或者border-style:none ( 	无边框,无论边框宽度设为多大)        }

Thank you everyone. It’s an image problem. Fireworks softened it by 1 pixel

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn