To create jQuery Datepicker like this one below do the following: 1. Save the calendar.zip on your computer 2. Unzip the folder and move it to your server 3. Include the js scripts and css style in your page: – <script src=”/my-website/jcalendar/jquery-1.8.3.js” type=”text/javascript”></script> – <link href=”/my-website/calendar/jquery-ui.css” rel=”stylesheet” type=”text/css” /> […]
Home » Archive by category "Css"
Archive for the 'Css' Category
Css round corners button
html code < asp:Button ID="SubmitBtn" runat="server" Text="Next ►" CssClass="btnSubmit" CausesValidation="true"/> css properties .btnSubmit { color: #FFF; text-decoration: none; border: 1px solid #C8C8C8; padding: 1px 3px 2px 5px; background-color: #1A503E; font-size: 13px; border-radius: 6px 6px / 6px 6px; }
CSS Centering
Author: Russ Weakley How do you center a containing block on a page using CSS? There are two main methods and the choice should be made based on whether your page layout is liquid (will move in and out depending on the size of the browser window) or fixed width. Centering liquid layouts Liquid layouts […]