2
How to align two texts in the bottom right corner of the canvas in css, one in each row, example:
IVP
Inventory Variant Position
IVP centered just above the meaning, but both in the lower right corner.
I tried so, but unsuccessfully:
<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%;
}