In my small information div, I am looking to align the content on the right side. Specifically, 065 31 323 323
,
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a5d4c4c1c0cbdfc4e5c2c8c4ccc98bc6cac8">[email protected]</a>
, and qadenza323
should be left-aligned. I have experimented with various numbers of spaces and non-breaking spaces but without success.
<div id="divInfo">
<div>Mobile - 065 31 323 323</div>
<div>Gmail - <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c9b8a8adaca7b3a889aea4a8a0a5e7aaa6a4">[email protected]</a></div>
<div>Skype - qadenza323</div>
</div>
#divInfo{
display:inline-block;
margin-left:29vw;
border:thin solid red;
}
#divInfo div{
padding:2px 5px;
border-radius:7px;
cursor:pointer;
}
#divInfo div:hover{
background:#e1e1e1;
}
You can view the fiddle here