Click here to Skip to main content
15,892,927 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends,

Can anyone give an example of Jquery Rounded Corner?
Posted

 
Share this answer
 
v3
Comments
Rockstar_ 17-Apr-12 0:37am    
Thank u very much....
sravani.v 17-Apr-12 1:07am    
Welcome Vijay
codeBegin 14-May-12 6:56am    
Nice links Sravani 5!
sravani.v 15-May-12 23:09pm    
Thank you spk89
Hi friend,


Below code will help you for Rounded corner....


XML
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!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 id="Head1" runat="server">
    <title>Litmus Home Page</title>


    <script type="text/javascript" src="JQuery/jquery-1.7.1.js"></script>

    <script type="text/javascript" src="JQuery/jquery.corner.js"></script>

    <script type="text/javascript">
$(function()
{
$("#PanelLogo").corner()

});
    </script>



    <style type="text/css">
        .style1
        {
            height: 72px;
        }
    </style>


</head>
<body>
    <form id="form1" runat="server">
<div>
<asp:panel runat="server" id="PanelLogo" width="98%" backcolor="AliceBlue" xmlns:asp="#unknown">
                         
                        <table style="height: 74px; width: 98%;">
                            <tr>
                                <td align="left">
                                    <asp:image id="Image01" runat="server" imageurl="~/Images/Logo1.jpg" height="110px">
                                        Width="140px" />
                                </asp:image></td>
                                <td style="font-style: normal; color: #008000; font-family: Algerian">
                                    class="style4">
                                    <h1>
                                        ST PAUL'S<h3>
                                            HIGH SCHOOL</h3>
                                        
                                    </h1>
                                </td>
                            </tr>
                        </table>
                    </asp:panel>
</div>br mode="hold" />
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900