I created a list, and want to place the pullet position to the right instead of left... is it possible?
its simple... you can use "direction = rtl" in CSS as..
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
.Test
{
direction:rtl;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:BulletedList runat="server" ID="BulletedList1" BulletStyle="Square"CssClass="Test">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" Value="2"></asp:ListItem>
<asp:ListItem Text="3" Value="3"></asp:ListItem>
<asp:ListItem Text="4" Value="4"></asp:ListItem>
</asp:BulletedList>
</div>
</form>
</body>
</html>
hope it helps./.
0 comments:
Post a Comment