João Esperancinhajesperancinha.hashnode.dev·Jan 8, 2025Micronaut - Getting the basicsFor my upcoming article, I decided to dive into the Micronaut world. And my experience has been amazing. I can tell you right off the bat, that Micronaut is pretty fast, extremely efficient, has record breaking startup times and is can be pretty comp...kotlin reified
Vardan Hakobyanvardan.hashnode.dev·Sep 21, 2024Mastering Email-Ready HTML: Automated Style Inlining with Tailwind CSSPhoto by Markus Spiske on Unsplash In the world of email development, ensuring consistent styling across various email clients is a significant challenge. Email clients are notoriously inconsistent in their CSS support. Many strip out <style> tags or...Tailwind CSS
GAJULA VAISHNAVIvaishnavidevdiary.hashnode.dev·Apr 28, 2024Key Differences Between Blockline and Inline ElementsIn HTML elements have most default display values, depending on the what type element it is. They are two types of elements: 1) Inline Element 2) Block Element 1)Inline elements: An inline element are a part of main text. do not start on a new line. ...blockline
John Kalimeriskalimerisjohn.hashnode.dev·Apr 18, 2024Inline functions in Kotlin 💚Introduction 📖 In this article, we will discuss inline functions in Kotlin. Inline functions can be tricky to grasp, especially how to use them effectively in your code. We will aim to explain things as clearly as we can. For the beginning let's t...33 readscrossinline
Jalaj Singhaljalajsinghal3.hashnode.dev·Apr 3, 2024Display - HeightCSS Height The CSS line height property is used to define the minimal height of line boxes within the element. It sets the differences between two lines of your content. It defines the amount of space above and below inline elements. It allows you...Height
Mitchell .C EzenwafuruakuforCodeParrot 10x Devroyalj-1704181043610.hashnode.dev·Feb 23, 2024CSS Inline vs Block vs Inline-Block ElementsCSS INLINE vs BLOCK vs INLINE-BLOCK ELEMENTS Ever wondered how content on webpages seem to follow a specific design layout? With some filling the entire width of the screen and others just laying side by side? This is due to the effects of display pr...12 likesblock
Namya Shahbigsmoke.hashnode.dev·Dec 23, 2023Basics CSS Questions Part 1What does CSS stand for? Cascading Style Sheets. What is the purpose of CSS? It's used to style the layout and appearance of web pages. How do you link an external CSS file to an HTML document? Using the <link> tag within the HTML <head> secti...css purpose
himanshugopalkdwivedi.hashnode.dev·Oct 28, 2023Different ways to bring CSS to Html(lt.12)There are three different ways to bring css to html: Inline css. Internal css. External css. Inline css : Inline CSS is written inside body section. By using it we can apply css to one element only. Inline css has the highest priority over all o...16 likes·158 readsinline
himanshugopalkdwivedi.hashnode.dev·Oct 19, 2023Inline VS Block Elements(lt.7)Inline tags : They are used to format text within a line. They do not start on a new line or take up the full width of their container. ex: <div>, <p>, <h1>, <ul>, <li>...... Uses: They are used for styling and formatting text within the content. Bl...inline
Afeez Lasisiafizlasisi.hashnode.dev·Aug 23, 2023Presentational Attribute And Inline Style For BeginnersHaving a grasp of fundamentals is very important for beginners. The Presentational Attributes (some called it Presentational Style) and Inline Style are very important fundamentals to understand for HTML and CSS. Both Presentational Style and Inline ...CSS