This article will show you how you can create a stylish list
of item with circular item count. In this we will use css3 to show <li>
tag in an stylish way in your asp.net application using css3.
Some of my previous articles are as follows: jQuery
DateTime Picker Calendar With Plush & Minush Date Changer In Asp.Net,
Dynamic
Thumbnails Image Preview Slider With Zoom Effect Using jQuery In Asp.Net and
C#.Net, Sign
Up Form For Newsletter In Asp.Net Using C# and Css3, Stylish
Button Using Css3 In Asp.net, How
to Get Mouse Pointer Cordinate Inside a Div Using jQuery In Asp.Net,
Get
User Detail Like City,County,Region,Zip Code Using IP Address In Asp.Net,
Facebook
Style Lightbox jQuery Plugin To Display Images Like Facebook In Asp.Net.
So for this article first we will create a new asp.net
application and add the below style sheet reference into the header of the
page.
<link href="Css/style.css" rel="stylesheet" type="text/css" />
|
Now add the <li>
tag to make it stylish
<div class="numberlist">
<ol>
<li><a href="http://www.aspdotnet-pools.com/2016/04/jquery-datetime-picker-calendar-with.html">jQuery
DateTime Picker Calendar With Plush & Minush Date Changer In Asp.Net</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/04/sign-up-form-for-newsletter-in-aspnet.html">Sign
Up Form For Newsletter In Asp.Net Using C# and Css3</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/04/fixed-header-web-page-using-css3.html">Fixed
Header Web Page Using CSS3 Without jQuery In Asp.Net MVC</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/04/countdown-to-show-under-construction.html">CountDown
To Show Under Construction Page Using jQuery In Asp.Net MVC</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/03/bootstrap-style-dynamic-jquery.html">Bootstrap
Style Dynamic jQuery Dropdowns Menu Using Asp.Net MVC In C#.Net</a></li>
</ol>
</div>
|
In above code css class numberlist
is responsible making a beautiful stylish list with circular image record
number dynamically.
Here is the complete code of the page.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication4.WebForm1"
%>
<!DOCTYPE html
PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Li Html
Tag Styling By Css3 With Dynamic Circular Item Count In Asp.Net In Asp.Net
</title>
<link href="Css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div class="numberlist">
<ol>
<li><a href="http://www.aspdotnet-pools.com/2016/04/jquery-datetime-picker-calendar-with.html">
jQuery DateTime Picker
Calendar With Plush & Minush Date Changer In Asp.Net</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/04/sign-up-form-for-newsletter-in-aspnet.html">
Sign Up Form For Newsletter
In Asp.Net Using C# and Css3</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/04/fixed-header-web-page-using-css3.html">
Fixed Header Web Page Using
CSS3 Without jQuery In Asp.Net MVC</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/04/countdown-to-show-under-construction.html">
CountDown To Show Under
Construction Page Using jQuery In Asp.Net MVC</a></li>
<li><a href="http://www.aspdotnet-pools.com/2016/03/bootstrap-style-dynamic-jquery.html">
Bootstrap Style Dynamic
jQuery Dropdowns Menu Using Asp.Net MVC In C#.Net</a></li>
</ol>
</div>
</form>
</body>
</html>
|
Now we have done run the application to check the output.
0 comments:
Please let me know your view