I am trying to implement something like this. I have four blocks inside the oval shaped block. With each inner block except the last one having a border on the right side of the shape v. When any of the inner block is hovered it is colored.
What could be the best way to implement it. - http://jsfiddle.net/ydxbwhh5/
I could make code upto here-
Index.html
<ul>
<li>some Text</li><!--
--><li>Text</li><!--
--><li>Text</li><!--
--><li>Text</li>
</ul>
And the css for the above
body{
font-size: 1.5em;
text-align: center;
}
ul{
text-decoration: none;
border: green 2px solid;
border-radius: 24px;
display: inline-block;
margin: 0;
padding: 0;
list-style-type: none;
overflow: hidden;
/*background-color: red;*/
}
ul li{
display: inline-block;
min-height: 50px;
border-right: 5px solid silver;
padding: 5px;
}
ul li:hover{
background-color: lightblue;
}
ul li:last-child{
border-right: none;
padding-right: 20px;
}