PHP, JS, CSS, Python, and Machine Learning Technology
0
Design-UX-CSS and Question on MongoDB
0

Round 1 (Technical F2F): The interviewer started by asking about my current project and asked me to explain the architecture. I answered by explaining her the ...

0
Frontend – Visualizing Compensation and Benefits
0

Here is a coding exercise to help us assess your technical skills. Please plan to spend no more than 4 hours on this. We understand we may not be the only ...

0
Database Design Exercise – Storing Compensation Data
0

This exercise is to implement the best possible solution to one of the exercises below in the time alloted. We're evaluating your ability to take a set of ...

0
Android Credit Card Input
0

Basically, the Company asked to create an Android "screen" that would allow a user to enter and submit the following data from an American Express, Discover, ...

0
How-Promise-makes-code-Asynchronous-non-blocking
0

Key Point - With the .then() method, we can chain our ASYNCHRONOUS calls in a SYNCHRONOUS manner. So, within the Promise block, I am converting few ...

0
How do I set the height in a CSS to be depending on the content?
0

There are a few other options you can use if you don't know beforehand the height of a DIV: div { height: auto; } This will allow the DIV to ...

0
What is rem unit
0

First see what is em An em is equal to the computed font-size of that element’s parent. For example, If there is a div element defined with font-size: 16px ...

0
CSS Positioning
0

An element with position: absolute; is positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed). ...

0
What is pseudo class
0

A pseudo-class is used to define a special state of an element. For example, it can be used to: Style an element when a user mouses over it. Style visited and ...

0
Flexbox Layout (Flexible Box)
0

The Flexbox Layout (Flexible Box) module aims at providing a more efficient way to lay out, align and distribute space among items in a container, even ...

0
CSS Grid Layout
0

CSS Grid Layout is the most powerful layout system available in CSS. It is a 2-dimensional system, meaning it can handle both columns and rows, unlike flexbox ...

0
What is CSS selector specificity and how does it work?
0

The browser determines what styles to show on an element depending on the specificity of CSS rules. We assume that the browser has already determined the rules ...

0
BEM-Model
0

The Block, Element, Modifier methodology (commonly referred to as BEM) is a popular naming convention for classes in HTML and CSS. Block Stan dalone entity ...

0
Multiple-class-selector-with-ampersand
0

Ampersand can also be used to concatenate additional class names (or IDs, etc.) into a compound selector for higher priority (instead of adding another ...

0
Ampersand
0

First a re-cap of the basic CSS Chain/Descendant Selector 1> Chain Selectors - ...

0
Child-combinator-vs-Descendant-combinator
0

A child combinator describes a childhood relationship between two elements. A child combinator is made of the "greater-than sign" (U+003E, >) code point and ...

0
Bootstrap grid system
0

Ignoring the letters (xs, sm, md, lg) for now, I'll start with just the numbers... the numbers (1-12) represent a portion of the total width of any div all ...

0
Angular NgModel
0

One of the main goals of Angular is to help the developer create reusable and composable components. I think ng-content is one of the simplest ways to do that ...

0
ng-content
0

Use the :host pseudo-class selector to target styles in the element that hosts the component (as opposed to targeting elements inside the component's ...

0
AngularJS directives
0

AngularJS directives are extended HTML attributes with the prefix ng-. The ng-app directive initializes an AngularJS application. The ng-init directive ...

RxHarun
Logo