Math, asked by sawantisheeta, 8 months ago

What is the distance between
the points P(1,0) and Q(5,0)​

Answers

Answered by crimsoncupid
11

 \bigstar answer :

Distance b/w two points (a , b) and (a1 , b1) :

 \sqrt{ {(a - a1)}^{2}  +  {(b - b1)}^{2} }

Here,

  • a = 1
  • b = 0
  • a1 = 5
  • b1 = 0

pq =  \sqrt{ {(1 - 5)}^{2}  +  {(0 - 0)}^{2} }

pq =  \sqrt{ {( - 4)}^{2} }

pq =  \sqrt{4}

pq = 2units

Therefore, the distance b/w points p and q is 2units.

Answered by Anonymous
5

Answer:

Flexbox Grids

Examples of building Flexbox grid layouts with Tailwind CSS.

Tailwind v1.2+ includes utilities for CSS Grid out of the box, but if you need to support older browsers, you can also build grid layouts using Tailwind's Flexbox and width utilities.

Here are a few examples to help you get an idea of how to build Flexbox grids using Tailwind.

Basic Grids

Use the existing Flexbox and percentage width utilities to construct basic grids.

<!-- Full width column -->

<div class="flex mb-4">

<div class="w-full bg-gray-500 h-12"></div>

</div>

<!-- Two columns -->

<div class="flex mb-4">

<div class="w-1/2 bg-gray-400 h-12"></div>

<div class="w-1/2 bg-gray-500 h-12"></div>

</div>

<!-- Three columns -->

<div class="flex mb-4">

<div class="w-1/3 bg-gray-400 h-12"></div>

<div class="w-1/3 bg-gray-500 h-12"></div>

<div class="w-1/3 bg-gray-400 h-12"></div>

</div>

<!-- Four columns -->

<div class="flex mb-4">

<div class="w-1/4 bg-gray-500 h-12"></div>

<div class="w-1/4 bg-gray-400 h-12"></div>

<div class="w-1/4 bg-gray-500 h-12"></div>

<div class="w-1/4 bg-gray-400 h-12"></div>

</div>

<!-- Five columns -->

<div class="flex mb-4">

<div class="w-1/5 bg-gray-500 h-12"></div>

<div class="w-1/5 bg-gray-400 h-12"></div>

<div class="w-1/5 bg-gray-500 h-12"></div>

<div class="w-1/5 bg-gray-400 h-12"></div>

<div class="w-1/5 bg-gray-500 h-12"></div>

</div>

<!-- Six columns -->

<div class="flex">

<div class="w-1/6 bg-gray-400 h-12"></div>

<div class="w-1/6 bg-gray-500 h-12"></div>

<div class="w-1/6 bg-gray-400 h-12"></div>

<div class="w-1/6 bg-gray-500 h-12"></div>

<div class="w-1/6 bg-gray-400 h-12"></div>

<div class="w-1/6 bg-gray-500 h-12"></div>

</div>

Similar questions