Home > UI/UX Development > CSS (Page 2)

CSS depended property

In CSS some css property which depend on other property value. They are related each other and works in together. Following CSS category will include dependent property are they Background Property Border Property List Property Position Property Table Property Background Property The background property in CSS allows you to control the background of any element like image

This Article is TAGGED in . Read more

How to set background image position for all browsers in CSS? Specially for Safari browser.

CSS: div{                    width:600px;                    height:400px;                    border:5px solid black;                    background-image: url('image.jpg');                        /*Add your image path here*/                    background-repeat: no-repeat;                    background-position: right 75% center;                   /*For all browser except Safari*/                    background-position-x: 25%;                                      /*For support all browsers with Safari browser*/                   background-position-y: 50%;                                      /*For support all browsers with Safari browser*/                   margin:0 auto; } DEMO

This Article is TAGGED in . Read more

CSS selectors

In CSS, Selectors play main role to selecting a particular content. CSS selectors are very brief topic but for simplicity we categorize it in following easy way Universal Selectors Element type ID selectors Class selectors Descendant selectors Child selectors Sibling selectors Adjacent sibling selectors Attribute selectors Pseudo class Pseudo element Universal Selectors Universal selectors are like a wild card, it select all html

Read more

Selectors! Types and difference

Basic Selectors:Universal Selector: [crayon-67ec5d92751ae081017803/]ID, Class Selector[crayon-67ec5d92751b2214302208/]Element/ Tag Selector[crayon-67ec5d92751b4723626794/]Attribute Selector[crayon-67ec5d92751b5794678386/]Descendant Selector: Selects all elements(any level deep) that are under the selector. For ex. following code will select all the span elements that are inside div element.[crayon-67ec5d92751b7582657857/]Child Selector: Selects all elements that are one level under the selector. For ex. following code will select all the span elements at

Read more

Web Developer Pre-release Testing Checklist

When we talk about an emerging full-stack web developer, there are certain things that are bound to be missed owing to a developer background and a programmer mindset. A checklist with all things that should be considered before release to QA or launch will help a developer to deliver a not

This Article is TAGGED in , , , , , , . Read more

Difference between Block and inline level elements

Nearly all HTML elements are either block or inline elements. The characteristics of block elements include:Always begin on a new lineHeight, line-height and top and bottom margins can be manipulatedWidth defaults to 100% of their containing element, unless a width is specifiedIgnores the vertical-align propertyInline elements on the other hand have the opposite characteristics:Begin on the same lineHeight,

This Article is TAGGED in , , . Read more

How to add CSS link to master page, page layout and page in Sharepoint publishing sites

How to add CSS link reference to Master Page, Page Layout, Page in a Sharepoint Publishing site?1. Master Page: Add the following code inside <head> tags[crayon-67ec5d927559a413747343/]2. Page Layout:Add below code after <!--ME:</Publishing:EditModePanel>--> tag in your Page Layout[crayon-67ec5d927559e459203166/]3. Pages: Add below code after <!--MS:<asp:ContentPlaceHolder id="PlaceHolderAdditionalPageHead" runat="server">--> tag in Page[crayon-67ec5d92755a0722560013/]  

This Article is TAGGED in , , , , , . Read more