Css

how to create custom scrollbar on sticky table with css

how to create custom scrollbar on sticky table with css

the table is sticky for the first table th and table td. Selector elements was used : ::-webkit-scrollbar — the entire scrollbar. ::-webkit-scrollbar-thumb— the draggable scrolling handle. ::first-of-type— every element that is...
250 views
7 useful CSS Tricks and Tricks for Front-end Developers

7 useful CSS Tricks and Tricks for Front-end Developers

Font size and scale sizefor legibility font should be between 14px -16px on body and heading 1 to 6 should use https://typescale.com/ to scale font fit with your browser. CSS variablesyou can...
199 views
Css Responsive width on Facebook Page Plugin

Css Responsive width on Facebook Page Plugin

Facebook Page Plugin doen’t responsive because It is frame that embed from facebook page profile. making it responsive by adding style on frame width:100%. The solution you can put code in your...
232 views
List all the tags in a WordPress

List all the tags in a WordPress

getting all tags and have some style in Worpress as below code. I hope this code can help you. <ul class="tag-ul"> <?php $tags = get_tags('post_tag'); if ( $tags ) : foreach (...
155 views
CSS Selectors

CSS Selectors

A CSS selector selects the HTML element(s) you want to style. We can divide CSS selectors into five categories: Simple selectors (select elements based on name, id, class) Combinator selectors (select elements based...
267 views
Place text in top-left corner of an image | text over absolute image

Place text in top-left corner of an image | text over absolute image

the way to set text absolute on the top corner image,first you need to set container class as relative and elements in container must be absolute if It is over on ....
204 views
CSS Tutorial

CSS Tutorial

CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. Classes and IDs are used as hooks for CSS styles. While the way...
198 views