JSFiddle - React, Tailwind, and code Playground

by Raghu Raman

HTML

<div class="info-wrapper">
    <a href="#" tabindex="1" class="more">Show more</a>
    <a href="#" tabindex="1" class="less">Show less</a>
    <div class="info">
        Bear claw oat cake marshmallow.
    </div>
</div>

CSS

body {
    background: #ccc;
}
.info-wrapper {
    height: auto;
    width: 500px;
    margin: 4em auto;
    padding: 0 0 2em 0;
    position: relative;
}
.info {
    max-height: 120px;
    height: auto;
    padding: .5em 0;
    border-bottom: solid 1px #fff;
    border-radius: 0 0 1em 1em;
    overflow: hidden;
    position: relative;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
p { margin: 1em; }
.info:after, .aftershadow {
    bottom: 0;
    width: 100%;
    height: 3em;
    border-radius: 0 0 1em 1em;
    position: absolute;
    background: -webkit-linear-gradient(rgba(192,192,192,0), #ccc);
    background: -moz-linear-gradient(rgba(192,192,192,0), #ccc);
    background: -ms-linear-gradient(rgba(192,192,192,0), #ccc);
    background: -o-linear-gradient(rgba(192,192,192,0), #ccc);
    background: linear-gradient(rgba(192,192,192,0), #ccc);
    content: '';
}
.aftershadow {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00cccccc, endColorstr=#ffcccccc);
}
.info-wrapper a {
    left: 50%;
    bottom: 1.5em;
    width: 9em;
    height: 1.25em;
    margin: -.1em 0 .35em -4.5em;
    border-bottom: solid 1px #fff;
    border-radius: 0 0 1em 1em;
    display: block;
    overflow: hidden;
    position: absolute;
    color: #000;
    font: 700 .67em/1.25em Arial;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    cursor: pointer;
}
.info-wrapper a:focus { outline: none; }
.info-wrapper .less { display: none; }
.info-wrapper .more:focus ~ .info, 
.info-wrapper .more:active ~ .info {
    max-height: 15em;
}
.info-wrapper .less:focus ~ .info, 
.info-wrapper .less:active ~ .info {
    max-height: 120px;
}
.info-wrapper .more:focus {
    display: none;
}
.info-wrapper .more:focus + .less {
    display: block;
}