© 2023 Hashnode
#ineuron-hiteshchaudhary-webdev-javascript-lco-learncodeonline-lco-css-learncodeonline-cssselectors-hiteshchoudharylco-code-with-hitesh-choudhary
How does styling work in React Native? Styling in React Native is done using JavaScript. Since React components have support for the style prop, you can also create an object of style values and pass …
Introduction CSS flexbox is a powerful tool which helps developers to design complex layouts with ease. The days of using floats and positioning are gone, not that these concepts are not used but flex…
What is a Web Server? Simply, A web server is a PC that stores, processes and delivers website documents to the web browser. A web server is a PC that runs websites. The main job of a server is to dis…
Let's understand Prototype by taking a goal to achieve in mind. Suppose you want to build something like React, ViewerJS, String Library, or a classic Array Library or you want to do some DOM Manipulation. I'm talking about big steps here, …
Flex is used to align the elements with operation rows and columns.There are some attributes name as justify-content, align-items, flex-direction, order, align-self, flex-wrap,align-content. Propertie…
Introduction In this article I'm describing CSS selectors and their types with proper examples, using only HTML and CSS. I'm describing how to select any HTML element, and then style it with CSS using…
we have all heard the name HTML in our life whether we belong to computer science or not. But few are aware of what is HTML. Let's figure out together what is HTML. In layman's language, HTML is a lan…
A callback function is a function that is passed as an argument to another function and is executed after the outer function has been completed. Why do we use the callback function? we use the callbac…
Arithmetic Operators: (+, -, * , /, %, **) Addition (+) Subtraction (-) Multiplication (*) Division (/) Modulo (%) (remainder) Exponential (**) Example: Comparison Operators: (<, >, <=, >=, …
Flexbox also referred to as Flex Box Model, is a one-dimensional layout, which provides magnificent alignment options. One-dimensional means, it targets one direction at a time aka either a row or a c…