'How can I hide hash code for android? I'm using azure portal

enter image description here

How can I hide hash code for android? I'm using azure portal



Solution 1:[1]

If you have both elements inside a div you can simply use flexbox to align them.

PS: you should provide us with some code in order to make your question more clear.

Take a look at this guide to understand more how flexbox works.

Your code should look something like this:

HTML:

<div class="container">
    <img />
    <p>Something...</p>
</div>

CSS:

.container {
    display: flex;
    align-items: center;
}

Solution 2:[2]

There are several ways to do this, one simple way would be to put both elements inside a div container and apply the following styles.

.elements-container{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
 }

Note that you can adjust the justify content,see this link from css-tricks for more information, as well as add a width attribute to the container as per your needs. Hope this helped in some way.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Joao Soares
Solution 2 sh4r10