CSS to get Carret symbol
Monday, September 4, 2023
Get icon from image file - CSS
Tuesday, June 13, 2023
CSS Tricks
1) Custom input colour using the accent-colour property.
You can use the CSS property accent-colour to change the colour of your input element, and yes you can use input[type="inputType"] for selecting a specific input element based on its type.
<input type = "checkbox">
<input type = "radio">
<input type = "range">
CSS
input[type="checkbox"]{
accent-color:lime;
}
input[type="radio"]{
accent-color:red;
}
input[type="range"]{
accent-color:blue;
}
Monday, April 17, 2023
Image CSS property aspect-ratio, object-fit and mix-blend-mode
Three CSS properties will help you to display images
1) The aspect-ratio property maintains the aspect ratio of an element, even if its size changes.
2) Object-fit controls how an image or video is displayed within its container, allowing for versatile scaling and cropping options.
3) Mix-blend-mode creates stunning visual effects by blending the colors of overlapping elements.
These powerful techniques can elevate your website's design to the next level, impressing your visitors with visually stunning layouts.
Monday, October 10, 2022
Resets CSS for all browser default values
The CSS code snippet below resets all browser default values and makes your CSS codes work in the same way in all browsers and neutralizes browser incompatibility.
Monday, September 19, 2022
Input type = number, remove the arrow at the end
Example:
Without class
With class
Friday, July 8, 2022
Style hr tag with CSS
The HTML <hr>
tag represents a Horizontal-rule and its miles used for web page smash thru line. It creates a horizontal line, which makes a person recognize that there's a quit of the web page or a sentence smash.
We also can layout the hr (horizontal-rule) tag to create an appealing user interface.
Following are the 2 CSS style for reference
Tuesday, August 17, 2021
Cheat Sheet - CSS, JQuery Selectors and Filters
* | All elements. |
element | Basic selector defined by the elements name. IE – the <p> tag. |
.class | Elements specified by a specific class attribute. |
#id | Elements specified by the specific ID number. |
selector1, selector2 | Elements that match more than one selector. |
:first | First element from the selection. |
:last | Last element from the selection. |
:even | Even index selection. |
:odd | Odd index selection. |
:not(selector) | Everything except the selector in parentheses. |
:eq() | Elements with an index number equal to the parameter. |
:gt() | Elements with an index number greater than the parameter. |
:lt() | Elements with an index number less than the parameter. |
:header | All h1 – h6 HTML tags. |
:animated | Any element being animated. |
:focus | The element which has focus (an input item such as a field, checkbox, button, or link). |
:empty | Elements with no children. |
:parent | Elements that have a child node. |
:has(selector) | Elements contain atleast one of the elements that match the selector in parentheses. |
:contains(‘text’) | Elements that contain the specified text in parentheses. |
:hidden | Elements that are hidden. |
:visible | Elements that exist and take up space in the layout of the page. |
:nth-child(exp) | Elements that match the mathematical pattern. IE – div :nth-child(2+1) |
:first-child | First child from the current selection. |
:last-child | Last child from the current selection. |
:only-child | The only existing child of the matching element. |
[attribute] | Elements that have the specified attribute value – IE – [name^ = “value”] |
:input | Elements with input. |
:text | Elements with text. |
:password | Elements with password inputs. |
:radio | Elements with radio buttons. |
:checkbox | Elements with checkboxes. |
:submit | Elements with submit buttons. |
:image | Elements with images. |
:reset | Elements with reset buttons. |
:button | All buttons. |
:file | Elements with file inputs. |
:selected | All items from drop-down lists. |
:enabled | All enables elements, including defaults. |
:disabled | All disables elements. |
:checked | All checked checkboxes or radio buttons. |
If there’s anything that I’ve missed or more explanation that you’d like to see, feel free to leave a comment.
Help other's to help yourself !!
Saturday, January 18, 2020
Fill element on hover
OUT Put
From center towards left and right
From center towards top and bottom
From center towards corners
From right to left
From left to right
From bottom to top
From top to bottom
Friday, April 5, 2019
Remove a specific class from all child elements, and add new class
$('#parentDiv').find("*").removeClass("old-class").addClass("new-class");
Monday, March 19, 2018
capitalize , lowercase, uppercase to HTML input Text
Css :
input.upper { text-transform: uppercase; } input.lower { text-transform: lowercase; } input.capital { text-transform: capitalize; }
Input Field Example.
UPPER CASE : | |
lower case : | |
Capital Case : | |