Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to render clickable li's but independent from the content that there is inside of the li. For example the code below has one button with just one line and another one with four lines:

<ul>
  <li><a href="#">jkfasdf</a></li>
  <li><a href="#">jkffasdf fjaskdfasfs jajklfd fjklasdfas</a></li>
</ul>

ul{
  background: red;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  float: left; 
}

li {
  padding: 10px; display: inline-block;
  border-left: 1px solid white;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}
li:first-child {border-left: none;}

a {

}

Here is the jsfiddle.

share|improve this question
What is your question? – Kyle Sevenoaks Jan 18 at 10:43
@KyleSevenoaks how to convert to clickable the hole li's. – tirengarfio Jan 18 at 10:44

1 Answer

up vote 0 down vote accepted

Add display:block to a tag and give padding to a tag instead of li

a {
  display:block; padding: 10px;
}

DEMO

share|improve this answer
Not working exactly right, but keep trying. You're almost there! – Kyle Sevenoaks Jan 18 at 10:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.