I have been working on a project involving ASP and C#.
Within the project, I am utilizing a masterpage for the navigation bar located at the top of my pages. It appears as follows:
https://i.sstatic.net/Qb1P8.png
The navigation bar includes standard navigation points along with one for logging out that uses float: right;
This setup functions correctly on all pages except for one specific page. The only difference is that on this particular page, there are textbox elements like so:
<asp:TextBox ID="tbTOP1sum" runat="server"></asp:TextBox>
As soon as I add one of these textboxes, the navigation bar changes to look like this:
https://i.sstatic.net/nl0Pu.png
No matter what type of element I add, everything appears fine except for these textboxes.
I have observed that this issue only occurs in Google Chrome, not Firefox, Internet Explorer, or Edge. Additionally, I discovered that toggling the CSS rule in Chrome Page Inspector resolves the problem.
At this point, I am unsure how to proceed... Any assistance would be greatly appreciated!