Click here to Skip to main content
15,885,998 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
When i make website full screen text goes out, i want that it stays in corner of image.
images show how it goes out when full screen and other one when minimize.

1.PNG un 1 cits fails | Failiem.lv.[^]

What I have tried:

ASP.NET
<pre><header class="w3-row" style="text-align: center">            
            <img src="images/bg_header.jpg" class="w3-margin-top w3-hide-small w3-hide-medium" style="max-height: 233px; max-width: 1038px; height: 100%; width: 100%; border-top-left-radius: 10px; border-top-right-radius: 10px;" />
            <img src="images/bg_header.jpg" class="w3-hide-large" style="max-height: 233px; max-width: 1038px; height: 100%; width: 100%" />
            <div style="position:relative;max-height:233px">
            <div class="w3-border-top w3-border-dark-gray" style="position:absolute; right:0;bottom:0">
                <asp:Label ID="loggedUser" runat="server" Text="" CssClass="w3-text-deep-orange"></asp:Label>
                <asp:Button ID="logout" runat="server" Text="[ Logout ]" CssClass="w3-button w3-hover-none w3-hover-text-deep-orange" />
            </div></div>
        </header>
Posted
Updated 12-Apr-22 5:49am

1 solution

Open the developer toolbar in your browser (How to Open the Developer Tools in a Browser[^] and analyze/inspect/amend the element's attributes. You might find all CSS attributes that affects the element which are mentioned in your CSS classes like,
CSS
class="w3-border-top w3-border-dark-gray"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900