On my quest to becoming more organised and productive, I’ve read about how awesome it is to use Trello. Not just for team collaborations but for individuals. The use of card sorting and organising lists appealed to me so the next logical step was to think how I could best use Trello productively. Was it for my Web Development work? blogging? or to organise everything else in my life!?
-
+
+
+
+
+
+
-
My latest blog post, “How To Harden Your WordPress Website For Better Security” was published by INKth.com last night.
How To Harden A #Wordpress #Website For Better #Security https://t.co/G3gj8EzENS #InfoSec #WebTips via @AdelineYaw pic.twitter.com/uleKu1S3iQ
— Hoi Sze Lam (@hoiszelam) January 5, 2016
//platform.twitter.com/widgets.js
Thanks to Hoi-Sze Lam from INKth.com for the opportunity.
-
+
+
+
+
+
+
There are times when using z-index, it doesn’t always appear to work the way we’d like to.
So to define z-index, “it is the attribute that lets you adjust the order of the layering of objects when rendering content.” – Mozilla Developer Network.
According to Angelina Fabbro: CSS In Your Pocket – Mobile CSS Tips From The Trenches (video), we should “set z-index to the body element to properly stack elements”, for example:
body{
z-index: 0;
}element{
z-index: 1
}How have you used z-index in your projects?
-
+
+
+
+
+
+
I’m attempting to compile a comprehensive list of how developers and front-end engineers structure their CSS using the SMACSS (Scalable and Modular Architecture for CSS) approach.
What is SMACSS?
“SMACSS stands for Scalable and Modular Architecture for CSS, and is more a style guide than a CSS framework. On a high level SMACSS aims at changing the way we are turning designs into code. Instead of working in a page mentality where you try to turn a single page design into code, SMACSS aims to identify repeating visual patterns. Those patterns are then supposed to be coded into flexible/re-usable modules, wich should be independent as possible from the individual page context. This is not a revolutionary point-of-view for a programmer, but in the web design world this is indeed a newer way of thinking.”
You must be logged in to post a comment.