CSS Cursor Property

The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element. The curser setting should inform users of the mouse operations that can be performed at the current location, including: text selection, activating help or context menus, copying content, resizing tables, and so on. You can […]

CSS Object-position Property

The object-position CSS property specifies the alignment of the selected replaced element’s contents within the element’s box. Areas of the box which aren’t covered by the replaced element’s object will show the element’s background. You can adjust how the replaced element’s object’s intrinsic size (that is, its natural size) is adjusted to fit within the element’s […]

How to prevent copy text in your website with pure CSS

If you need to restrict the text selection in your website you are in the right place. The user-select CSS property controls whether the user can select text. This doesn’t have any effect on content loaded as part of a browser’s user interface except in textboxes. Values none: The text of the element and its sub-elements […]

CSS Outline Property

The CSS outline property is line drawed outside the element’s border Hi, I have a 2px red border and a blue outline of 6px width Be careful: Outline differs from borders! Unlike border, the outline is drawn outside the element’s border, and may overlap other content. Also, the outline is NOT a part of the […]