Bootstrap 4 class | Bulma class |
.rows | .columns |
.col | .column |
Friday, May 18, 2018
Wednesday, May 16, 2018
Bulma - How to make text unselectable
Requirement: I want to restrict users selecting text in my website. How do I do this using Bulma
Use the class
Use the class
.is-unselectable
See the Pen Bulma - make text unselectable by Kiran (@kiranvj) on CodePen.
Malayalam matrix screen
മലയാളം മാട്രിക്സ്
See the Pen Malayalam Matrix by Kiran (@kiranvj) on CodePen.
Bulma - left or right align an element
How to left or right align an element in Bulma
Use class
Use class
Use class
.is-pulled-left
to left align an element.Use class
.is-pulled-right
to right align an element.See the Pen Bulma - pull an element to right by Kiran (@kiranvj) on CodePen.
Sunday, May 13, 2018
Bootstrap - show text in a single link
To show text in a single line you need to added the Bootstrap class "text-nowrap"
Example
Example
<span class="nowrap">Your text here.</span>
JavaScript - Check if object is empty
function isEmptyObject ( obj ) { var name; for ( name in obj ) { return false; } return true; }
Subscribe to:
Posts (Atom)
Get Indian financial year based on date
This function lets you get the start and end date of Indian financial year based on given date. This can also be modified for US financia...
-
Add a key "homepage": "your-subfolder/" in your package.json All static files will be loaded from "your-subfold...
-
How to left or right align an element in Bulma Use class .is-pulled-left to left align an element. Use class .is-pulled-right to righ...
-
If you need to show dashed line for a line chart use the below code. < Line type = " linear " dataKey = " trend ...