My Blog

    • Sample Page
Illustration of a bird flying.
  • What are the benefits of CSS sprites?

    If a web page has a large number of images that take a longer time to load because each image separately sends out an HTTP request. The concept of CSS sprites is used to reduce the loading time for a web page because it combines the various small images into one image. It reduces the…

    October 28, 2022
  • What is RWD?

    RWD stands for Responsive Web Design. This technique is used to display the designed page perfectly on every screen size and device, for example, mobile, tablet, desktop and laptop. You don’t need to create a different page for each device.

    October 28, 2022
  • What is the difference between inline, embedded and external style sheets?

    Inline: Inline Style Sheet is used to style only a small piece of code. Syntax Embedded: Embedded style sheets are put between the <head>…</head> tags. Syntax External: This is used to apply the style to all the pages within your website by changing just one style sheet. Syntax

    October 28, 2022
  • What are the advantages of External Style Sheets?

    October 28, 2022
  • What is the difference between class selectors and id selectors?

    An overall block is given to class selector while id selectors take only a single element differing from other elements. CSS Class Selector CSS Id Selector

    October 28, 2022
  • What is the use of ruleset?

    The ruleset is used to identify that selectors can be attached with other selectors. It has two parts:

    October 28, 2022
  • Name the property for controlling the image scroll in the background.

    The background-attachment property is used to specify if the background image is fixed or scroll with the rest of the page in the browser window. If you set fixed the background image, then the image not move during scrolling in the browser. Let’s take an example with the fixed background image.

    October 28, 2022
  • Name the property for controlling the image position in the background.

    The background-position property is used to define the initial position of the background image. By default, the background image is placed on the top-left of the webpage. You can set the following positions:

    October 28, 2022
  • Name the property for controlling the image repetition of the background.

    The background-repeat property repeats the background image horizontally and vertically. Some images are repeated only horizontally or vertically.

    October 28, 2022
  • Name the property used to specify the background color of an element.

    The background-color property is used to specify the background color of the element. For example:

    October 28, 2022
←Previous Page
1 … 33 34 35 36 37 … 113
Next Page→

My Blog

Proudly powered by WordPress