Author: Awais Farooq

  • Zoom

    The zoom property of CSS is useful in controlling the magnification level of elements. zoom is a non-standard property of CSS and it is advisable to use the transform: scale() function for the same output. Possible Values Applies to All the HTML elements. DOM Syntax CSS zoom – normal Value Here is an example: CSS zoom – <percentage> Value Here…

  • focus

    CSS focus The :focus pseudo-class in CSS represents an element that has received focus. This class is generally triggered when a user clicks, taps on an element or selects an element using the tab key of keyboard. :focus pseudo-class is applied to the focussed element itself. In order to select an element that contains a focussed element, use :focus-within pseudo-class.…

  • display Property

    The display property in CSS is used to specify how an element should be displayed on the webpage. It controls the layout and visibility of an element. The display property is useful in setting the inner and outer display types of an element. Possible Values The value passed to the display property is a keyword. These keyword values are categorised in…

  • hover

    The :hover pseudo-class in CSS is used to target an element when the user hovers over it with the mouse cursor. Its purpose is to apply styles or trigger specific behaviors to enhance the user experience or provide additional visual feedback. :hover is a tool to make interactive elements more dynamic and engaging without requiring any user input…

  • hyphens

    CSS hyphens property controls how words are broken into lines when text is too long to fit on a single line. This property can be used to improve the readability of text that wraps across multiple lines. The property only applies to block-level elements. Following are all possible values that can be used for property hypens: CSS…

  • Position Property

    CSS property position helps manipulate position of an element in a web page. The properties top, bottom, right, and left are used to control its exact position on the page. They specify the offsets of an element from its edges Property position can be used to create floating elements, floating sidebar, and other interactive features. Possible Values Applies To All elements. Syntax CSS position…

  • Order

    What is an order? CSS order property is used to specify the order in which flex items appear within a flex container. The order of the flex items is determined by the values of their order property. The flex items with the lower order value will be displayed first. Here are some additional things to keep in…

  • quotes

    CSS quotes property allows browser to render quotation marks for the content. Quotes can be added to any element. They seek the benefit of pseudo-elements ::before and ::after to insert the quotation marks at the beginning and at the end of a quote. These pseudo-elements are defined by the content property. This CSS quotes specifies how the browser should render quotation marks that are added…

  • Resize

    CSS resize is a property that allows users to adjust the size of an element, either vertically, horizontally, both, or none, based on the specified value. Resize property adds a handle at the bottom-right corner of an element on a webpage. This handle allows users to click and drag to change the size of an elements, making…

  • Arrows

    What is css arrows? Arrows are used in user interfaces to guide users and help them understand the flow of information. They provide visual clues to navigate through different actions. Arrows are an effective way to improve the user experience. They are used in tooltips, dropdown menus, navigation elements, and more. This makes it easier…