Is there a way to align a button to the right of a page?
I attempted using text-align: right;
and align-content: right;
In addition, I want the button to utilize display: flex;
#hideShow {
display: flex;
text-align: right;
align-content: right;
}
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<button class="flex" id="hideShow" onclick="hideBtTS()">Hide</button>