Learn more about our current job openings and benefits of working at FSL.
Detailed reviews and feedback from past and current clients.
Get to know the Management Team behind FullStack Labs.
Our step-by-step process for designing and developing new applications.
Writings from our team on technology, design, and business.
Get answers to the questions most frequently asked by new clients.
Learn about our company culture and defining principles.
A high level overview of FullStack Labs, who we are, and what we do.
A JavaScript framework that allows rapid development of native Android and IOS apps.
A JavaScript framework maintained by Facebook that's ideal for building complex, modern user interfaces within single page web apps.
A server side programming language known for its ease of use and speed of development.
A lightweight and efficient backend javascript framework for web apps.
An interpreted high-level programming language great for general purpose programming.
A JavaScript framework maintained by Google that addresses many of the challenges encountered when building single-page apps.
A JavaScript framework that allows developers to build large, complex, scalable single-page web applications.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
View a sampling of our work implemented using a variety of our favorite technologies.
View examples of the process we use to build custom software solutions for our clients.
View projects implemented using this javascript framework ideal for building complex, modern user interfaces within single page web apps.
View projects implemented using this framework that allows rapid development of native Android and IOS apps.
View projects implemented using this backend javascript framework for web apps.
View projects implemented using this high-level programming language great for general purpose programming.
View projects implemented using this server side programming language known for its ease of use and speed of development.
We have vast experience crafting healthcare software development solutions, including UI/UX Design, Application Development, Legacy Healthcare Systems, and Team Augmentation. Our development services help the healthcare industry by enhancing accessibility, productivity, portability, and scalability.
We offer a range of custom software development solutions for education companies of all sizes. We're experts in Education Software Development and specialists in enhancing the learning experience across web, mobile, and conversational UI.
We're experts in developing Custom Software Solutions for the Logistics Industry. Our work offered a whole new and more efficient way for Logistics companies to manage their crucial operations.
We partner with various construction industry organizations to build custom software development solutions. Our Construction Software Development Services allow construction companies to manage projects, resources, and documentation.
We have vast experience crafting healthcare software development solutions, including UI/UX Design, Application Development, Legacy Healthcare Systems, and Team Augmentation. Our development services help the healthcare industry by enhancing accessibility, productivity, portability, and scalability.
We offer a range of custom software development solutions for education companies of all sizes. We're experts in Education Software Development and specialists in enhancing the learning experience across web, mobile, and conversational UI.
We're experts in developing Custom Software Solutions for the Logistics Industry. Our work offered a whole new and more efficient way for Logistics companies to manage their crucial operations.
We partner with various construction industry organizations to build custom software development solutions. Our Construction Software Development Services allow construction companies to manage projects, resources, and documentation.
Learn more about our current job openings and benefits of working at FSL.
Detailed reviews and feedback from past and current clients.
Get to know the Management Team behind FullStack Labs.
Our step-by-step process for designing and developing new applications.
Writings from our team on technology, design, and business.
Get answers to the questions most frequently asked by new clients.
Learn about our company culture and defining principles.
A high level overview of FullStack Labs, who we are, and what we do.
A JavaScript framework that allows rapid development of native Android and IOS apps.
A JavaScript framework maintained by Facebook that's ideal for building complex, modern user interfaces within single page web apps.
A server side programming language known for its ease of use and speed of development.
A lightweight and efficient backend javascript framework for web apps.
An interpreted high-level programming language great for general purpose programming.
A JavaScript framework maintained by Google that addresses many of the challenges encountered when building single-page apps.
A JavaScript framework that allows developers to build large, complex, scalable single-page web applications.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A dynamic programming language used in all sorts of web and mobile applications.
A cross-platform programming language designed to run robust applications on any device.
A UI toolkit used to build natively compiled applications from a single codebase.
A functional programming language that’s ideal for scalability, maintainability, and reliability.
A Customer Relationship Management (CRM) platform that seamlessly integrates with your business operations.
A high-performance programming language that makes it easy to build simple, reliable, and efficient software.
View a sampling of our work implemented using a variety of our favorite technologies.
View examples of the process we use to build custom software solutions for our clients.
View projects implemented using this javascript framework ideal for building complex, modern user interfaces within single page web apps.
View projects implemented using this framework that allows rapid development of native Android and IOS apps.
View projects implemented using this backend javascript framework for web apps.
View projects implemented using this high-level programming language great for general purpose programming.
View projects implemented using this server side programming language known for its ease of use and speed of development.
Many developers are not aware of the latest CSS properties and features because Internet Explorer is usually lagging behind the CSS spec. However, we can’t stop learning new technologies just because IE doesn’t support them. With this in mind, I wanted to make a short list of cool CSS properties I think every developer should know.
Truncates text at a specific number of lines. The text-overflow property allows us to use ellipsis as a value to truncate the text on a single line. But what happens if I want to truncate the text that spans more than one line? Well, in that case, we can use line-clamp. Let’s see the syntax:
-- CODE language-css --
.element {
line-clamp: [none | <integer>];</integer>
}
The `line-clamp` accepts 2 values:
Let’s see how it works:
-- CODE language-css --
.line-clamp-4 {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4; //truncate the text at line 4
}
Have you ever tried to underline text with text-decoration: underline and ended up with something like this:
The text-decoration property is placing the line within the text’s descenders, which are the part of letters that extend below the baseline. If we want to show the line completely under the text, and it's descenders, then we can use the text-underline-position: under property:
-- CODE language-css --
.text-underline {
text-underline-position: under;
text-decoration: underline;
}
Allows you apply styles to the parent when one of its children is in focus. Usually it’s used to add styles to a form.
-- CODE language-css --
.form:focus-within {
outline: 3px solid #333;
}
See how it works: https://codepen.io/camilaFarelo/full/PoPONKB
Defines how the background image and the background color will blend with each other. Let’s look at the syntax:
-- CODE language-css --
.blend {
background-blend-mode: [<blend-mode>]</blend-mode>
}
But, how many blend modes can we use? The answer is 10:
Let’s see how they look:
Play with it: https://codepen.io/camilaFarelo/full/PoPOOEY
Once the user finishes scrolling, we can lock the viewport to an element or location. We need to set 2 properties:
Let’s look at a simple example:
-- CODE language-css --
.scroll-container {
align-content: center;
display: grid;
grid: auto / repeat(7, auto);
grid-gap: 1em;
overflow: auto;
scroll-snap-type: inline mandatory;
}
img {
width: 400px;
scroll-snap-align: center;
}
Live demo: https://codepen.io/camilaFarelo/full/ExVmbMj
We can select mandatory or proximity for scroll-snap-type:
We can see the difference between mandatory and proximity with the next example: https://codepen.io/camilaFarelo/full/wvKeLMz
A font relative-length unit that is equal to the width of the zero in the current font size. This means that the width of your element will be set dynamically depending on the font family, size, and number of characters specified in the width attribute. Because of this, we don’t recommend using ch units for precise measurements. Here’s how we set a paragraph:
Now let’s say that I want to add a width of approximately 100 characters per line:
-- CODE language-css --
.text-ch-100 {
width: 100ch;
}
Lets you determine how content will wrap around a floating element.
-- CODE language-css --
.element {
float: left;
shape-outside: circle(50%);
width: 200px;
height: 200px;
border-radius: 0 100px 100px 0;
background-color: pink
}
-- CODE language-html --
<h1>shape-outside</h1>
<div class='element'></div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum...</p>
Do you want to create a smooth animation when clicking a link that targets an anchored position on a scrolling page? Good news: you can do it with scroll-behavior. Alas, it's not working in Safari yet, but let's hope it will be soon. Check the syntax:
-- CODE language-css --
.smooth-scroll {
scroll-behavior: [auto | smooth];
}
As we can see in the example, scroll-behavior accepts two values:
Here’s an example: https://codepen.io/camilaFarelo/full/pojdvNV
Allows you to reset all the properties to their inherited or initial value, except for direction and unicode-bidi. Here’s the code:
-- CODE language-css --
.all {
all: [initial, inherited, unset]
}
The all property accepts 3 values:
This property is used with 3D transformation and lets you decide if the “back side” of an element will be visible. Here’s the code:
-- CODE language-css --
.all {
all: [initial, inherited, unset]
}
The backface-visibility accepts 2 values:
You can see an example here: https://codepen.io/camilaFarelo/full/dyYZoxK
Well, that’s all the cool CSS tips and tricks for this post. Do you have some you’d like to share? Let me know on Twitter or LinkedIn.
We’d love to learn more about your project.
Engagements start at $75,000.