How to change svg icon colors with Tailwind CSS ?
SVG stands for Scalable Vector Graphics and is an XML-based ( can be edited ) vector image format. SVG is commonly used for icons, animations, interactive charts, graphs, and other dynamic graphics in the browser. As it is XML-based, you can easily edit or change the SVG icon colors with Tailwind....
read more
How to use google fonts in Tailwind CSS ?
In this article, we will see how to use Google fonts on our webpage and gives it a unique look. Google Fonts is a free, open-source library of over 1000 font families that can be used on websites. The fonts are served by Google servers and can be easily integrated into a website by including a link to the Google Fonts API in the HTML file. It only takes a few lines of code to use Google Fonts on your website’s HTML or CSS files. You can alter the typography to suit your design requirements by selecting from a variety of font types, weights, and sizes. Advanced features like font subsets, which let you choose particular characters or languages for your font, and font loading strategies, which improve website speed, are also available with Google Fonts....
read more
Tailwind CSS Max-Width
This class accepts lots of values in tailwind CSS in which all the properties are covered in class form.  It is the alternative to the CSS max-width property. This class is used to define the maximum width of an element. The value of the width cannot be greater than the value of the max-width. If the content specified within the element is bigger, max-width maintains the specified maximum width....
read more
Tailwind CSS Flex Wrap
The CSS flexbox is a vital feature to develop the frontend, there are three wraps available in CSS so in tailwind CSS all the properties are covered as in class form. It is the alternative of CSS flex-wrap Property for fast development of front-end....
read more
How to set width transition in Tailwind CSS ?
In Tailwind CSS, the transition utility is used to apply a width transition to an element. The transition utility accepts a list of properties, duration, and timing functions for the transition....
read more
How to use Tailwind CSS with Django ?
Tailwind CSS has gained immense popularity among developers for its utility-first approach to styling web applications. Django on the other hand is a robust and flexible web framework written in Python. Combining these two powerful tools can enhance your Django projects. In this article, we will explore how to integrate the capabilities of Tailwind CSS within a Django project....
read more
How to use both Tailwind CSS and Bootstrap 4 at the same time ?
In this article, we will know how to use Bootstrap with Tailwind CSS, at a moment, in the same code. We can use both the CSS frameworks together but it is not recommended. Because few classes will contradict with each other like “container”, “clearfix”, etc. As we know that Bootstrap is a known CSS framework. Although the Tailwind CSS framework can also be used parallelly in comparison to Bootstrap. Tailwind CSS is basically a utility-first CSS framework that facilitates rapidly building custom user interfaces. So, in the development field, it is more familiar with the Tailwind rather than Bootstrap. There are significant differences in the Tailwind CSS vs Bootstrap....
read more
Tailwind CSS Background Color
This class accepts more than one value in tailwind CSS in which all the properties are covered in class form. It is the alternative to the CSS background-color property. This class is used to specify the background color of an element. The background covers the total size of the element with padding and border but excluding margin. It makes the text so easy to read for the user....
read more
Tailwind CSS Background Image
This class accepts more than one value in tailwind CSS. All the properties are covered in class form. It is the alternative to the CSS background-image property. This class is used to set one or more background images to an element. By default, it places the image on the top left corner. To specify two or more images, separate the URLs with a comma....
read more
Tailwind CSS Float
This class accepts more than one value in tailwind CSS. It is the alternative to the CSS float property. The float class defines the flow of content for controlling the wrapping of content around an element....
read more
Top 10 Javascript Libraries for Machine Learning and Data Science
JavaScript is the programming language of the web which makes it pretty important! However, it has mostly been used as a scripting language in web development without much association with Machine Learning or Data Science as compared to R and Python. That’s because R and Python are specifically suited to Data Science or ML with a large collection of supporting libraries, community members, and infrastructure. However, in the past few years, JavaScript’s popularity has increased to such an extent that more and more people are going crazy over it! That’s why this article deals with the top 10 JavaScript libraries that are quite popular these days....
read more
How to add scale animation on hover using Tailwind CSS in React ?
In this article, we’ll see how to add scale animation on hover using tailwind CSS in a ReactJS app. The hover effect appears when a user positions the cursor over an element. In tailwind CSS, the scale utility class helps in getting the zoom effect over an element....
read more