text bottom of div css code example
Example 1: css border bottom
.bottomBorder {
/* width style color */
border-bottom: 5px solid black;
}
Example 2: css div at bottom of div
/* Position inside div at the bottom of containing (outside) div */
<style>
.outside {
position: relative;
width: 200px;
height: 200px;
background-color: #EEE;
}
.inside {
position: absolute;
bottom: 2px;
}
</style>
<div class="outside">
<div class="inside">inside</div>
</div>
Example 3: outline bottom css
div {
width: 100px;
height: 100px;
background: #eee;
}
div:hover {
width: 100px;
height: 100px;
background: #eee;
border-bottom: 1px solid;
margin-bottom: -1px;
}