Wednesday, May 07, 2025

Breaking News
>> Securing and encrypt View State and Cookies values  >> Page has one or more controls that do not correspond with   >> “The Controls collection cannot be modified because the control contains code blocks”  >> How to fix "Validation(): Element 'xxxx' is not supported  >> How to create a new session in ASP.NET programmatically  >> MySQL Database Backup using mysqldump command    

Editors Picks

Thursday, January 5, 2012

CSS round corner


<style type="text/css">
   
    .CSSroundcorner  
    {
        height:100px;
        width:100px;
        background-color:#ebebeb;
       
       
        -moz-border-radius-bottomright: 5px;
        -khtml-border-radius-bottomright: 5px;
        -webkit-border-bottom-right-radius: 5px;
       
        -moz-border-radius-bottomleft: 5px;
        -khtml-border-radius-bottomleft: 5px;
        -webkit-border-bottom-left-radius: 5px;
       
        -moz-border-radius-topright: 5px;
        -khtml-border-radius-topright: 5px;
        -webkit-border-top-right-radius: 5px;
       
        -moz-border-radius-topleft: 5px;
        -khtml-border-radius-topleft: 5px;
        -webkit-border-top-left-radius: 5px;
    }
    style>
<asp:GridView ID="GridView1" runat="server" CssClass="CSSroundcorner">
asp:GridView>

No comments :

Post a Comment

Contact Us

Name

Email *

Message *