Home > UI/UX Development > HTML (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

TYPES OF HTML ELEMENTS AND TAGS

Types Of Elements: Block Level: Block elements are meant to structure the main parts of your page, by dividing your content in coherent blocks wth full width. paragraphs <p> lists: UL and LI headings <h1> to <h6>, articles <article> sections <section> long quotes <blockquote> Division <div> Form <form> Table <table> Inline Level: Inline elements are meant to differentiate part of

This Article is TAGGED in , , . Read more

TYPES OF RESPONSIVE DESIGN IN HTML

Responsive Design:  Responsive web design (RWD) is an approach to web design aimed at allowing desktop webpages to be viewed in response to the size of the screen or web browser one is viewing with.  The Viewport: The viewport is a short tag that is included in the head of your HTML

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-674f3d3511209273825538/]ID, Class Selector[crayon-674f3d351120d858295623/]Element/ Tag Selector[crayon-674f3d351120f269022619/]Attribute Selector[crayon-674f3d3511211436383670/]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-674f3d3511213410444280/]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

Problem with ampersand(“&”) in anchor tags.

There is a common error occurs when including a URL which contains an ampersand ("&"):<!-- This is invalid! --> <a href="foo.cgi?chapter=1&section=2&copy=3&lang=en">...</a>This example generates an error for "unknown entity section" because the "&" is assumed to begin an entity reference. Browsers often recover safely from this kind of error, but real problems do occur in some

This Article is TAGGED in , . Read more