I have created an ASP.NET master page as follows:
<body class="MasterStyle">
<form id="frmMaster" runat="server">
<div>
<asp:Label runat="server" Text="My Site Name" Font-Bold="true" Font-Names="MS-Sans"
Style="text-align:right" Width="100%" />
The style is defined as follows:
<style type="text/css">
.MasterStyle
{
width: 100%;
background: aqua;
}
The problem is that “My Site Name” is appearing just off the right hand site of the page (just missing the “e” off). Does anyone know why this might be happening?