Since you have set a fixed width
of 300px
, you could use like below.
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.panel
{
left: 500%;
margin-left: 300px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:Panel ID="Pn" runat="server" Width="600" BackColor="#CCFFCC" Height="300" HorizontalAlign="Center"
CssClass="panel">
<asp:Label ID="Label2" runat="server" Width="30" Text="Hello!"></asp:Label>
</asp:Panel>
</form>
</body>
</html>