How to leave two text aligned in the lower right corner of the screen in css, one on each line, example:
IVP
Inventory Variant Position
IVP centralized just above meaning, but both in the lower right corner.
I tried this way, but without success:
<div class='page test-page' id='ivp-page-1'>
<h3>IVP</h3>
<h4>INVENTORY VARIANT POSITION</h4>
</div>
h3, h4 {
position: relative;
width: 0;
min-width: 825px;
height:700px;
text-align: right;
float: right;
margin-left:3.7%;
margin-right:3.7%;
padding-left:0.5%;
padding-right:0.5%;
}