Search code examples
cssfeedjsfiddleblogspot

How can I delete this "a" space under the images using CSS?


I'm trying to learn the basics in CSS but I still have some problems.
How can I hide this "a" space under the img?
I gave it a red background to make it easier to explain which part I'm talking about.

here is the problem:

http://jsfiddle.net/3c48P/7/

.feedEkList li a {
background: red;
}

This is the CSS but I cannot hide it (I want to keep the img of course)


Solution

  • Try display:block on image:

    http://jsfiddle.net/3c48P/9/

    .feedEkList li a img
    {
        display:block;
    
    }