Bistro Items To Go Black bean purses Coconut-Corn Southwestern Napoleons Chowder Ledn Th a of pye Jerk Rotiaerte Ceken Pusta Puttanenca Tdd e y j ded ed ing dii A id

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Flexbox Product Listing Exercise</title>

<style>
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: Georgia, serif;
  line-height: 1.5em;
}
h1 {
  font-size: 4em;
  font-weight: normal;
}
h2 {
  font-size: 1.2em;
  margin-top: 0;
}
#menu {
  border: 3px solid #783F27;

}
section {
  background: #F6F3ED;
  margin: 10px;
  padding: 20px;
  border: 1px dotted maroon;
  width: 240px;

display:flex;

flex-direction:column;
}
.title {
  background-color: #783F27;
  color: #F9AB33;
  line-height: 4em;
}
.price {
  font-weight: bold;
  background: #F9AB33;
  padding: 5px;
  width: 100%;
  text-align: center;

margin-top:auto;
}
</style>

</head>

<body>
<div id="menu">
<section class="title">
<h1>Bistro Items To Go</h1>
</section>

<section class="dish">
<h2>1<br>Black bean purses</h2>
<p class="info">Spicy black bean and a blend of Mexican cheeses wrapped in sheets of phyllo and baked until golden.</p>
<p class="photo"><img src="table.jpg" alt=""></p>
<p class="price">$3.95</p>
</section>

<section class="dish">
<h2>2<br>Southwestern Napoleons</h2>
<p class="info">Layers of light lump crab meat, bean, and corn salsa, and our handmade flour tortillas.</p>
<p class="photo"><img src="table.jpg" alt=""></p>
<p class="price">$7.95</p>
</section>

<section class="dish">
<h2>3<br>Coconut-Corn Chowder</h2>
<p class="info">This vegan chowder with potatoes and corn in a coconut broth is light and delicious.</p>
<p class="photo"><img src="table.jpg" alt=""></p>
<p class="price">$3.95</p>
</section>

<section class="dish">
<h2>4<br>Jerk Rotisserie Chicken</h2>
<p class="info">Tender chicken slow roasted on the rotisserie, flavored with spicy and fragrant jerk sauce and served with fried plantains and sliced mango. <em>Warning, very spicy!</em></p>
<p class="photo"><img src="table.jpg" alt=""></p>
<p class="price">$12.95</p>
</section>

<section class="dish">
<h2>5<br>Thai Shrimp Kebabs</h2>
<p class="info">Skewers of shrimp marinated in lemongrass, garlic, and fish sauce then grilled to perfection.</p>
<p class="photo"><img src="table.jpg" alt=""></p>
<p class="price">$12.95</p>
</section>

<section class="dish">
<h2>6<br>Pasta Puttanesca</h2>
<p class="info">A rich tomato sauce simmered with garlic, olives, capers, anchovies, and plenty of hot red pepper flakes.</p>
<p class="photo"><img src="table.jpg" width="200" height="100" alt=""></p>
<p class="price">$12.95</p>
</section>


</div>

</body>
</html>

EXERCISE 16-3. Adjusting flex and order
The online menu is looking pretty good, but let's put a few finishing touches
on it. Open the flex-menu.html file as you left it at the end of EXERCISE 16-2.
1. Instead of having lots of empty space inside the menu container, we'll
make the items fill the available space. Because we want the items to be
fully flexible, we can use the auto value for flex (the same as flex: 11
auto;). Add this declaration to the section rule to turn on the stretching
behavior:
section {
flex: auto; }
2. OK, one last tweak: let's make the photos appear at the top of each menu
item. Because each section is a flex container, we can use the order
property to move its items around. In this case, select the paragraphs
with the "photo" class name and give it a value less than the default 0.
This will make the photo display first in the line (FIGURE 16 26):
. photo { order: -1; }
If you want to get fancy, you can set the width of the img elements to 100% so
they always fill the width of the container. The little image I've provided gets
quite blurry when it expands larger, so you can see how the responsive image
techniques we covered in Chapter 7, Adding Images, might be useful here. It's
not the best-looking web page in the world, but you got a chance to try out a
lot of the Flexbox properties along the way.
Bistro
Items
To Go
Southwestern
Napoleons
Black bean purses
Coconut-Corn
Chowder
Spicy black benn anda
This vg choder with
pandn ina
caconut broth la light and
biend of Mesican cheeses
Leyes of lighat lunp rab
urapped in ahets of phyllo
and baknd ustil e.
meet, bean, and or sal,
and our handade lour
lortilas.
delidieus.
4
Jerk Rotisserie Chicken
Thai Shrimp Kebabs
Pasta Puttanescn
Tender chicken alow soasted an the
Skeves of shrimp marinated in
lemongrass, gali, and fah sue then
uiled to perfection.
Aich tomato snuce simmend with
iserin, lavored wa spiey and
frgrst jerk s d eved with ed
plantai and slied . Wuring
ery piat
parlie, elives, cpern, anchevis, and
plesty of last red pepper laken
Transcribed Image Text:EXERCISE 16-3. Adjusting flex and order The online menu is looking pretty good, but let's put a few finishing touches on it. Open the flex-menu.html file as you left it at the end of EXERCISE 16-2. 1. Instead of having lots of empty space inside the menu container, we'll make the items fill the available space. Because we want the items to be fully flexible, we can use the auto value for flex (the same as flex: 11 auto;). Add this declaration to the section rule to turn on the stretching behavior: section { flex: auto; } 2. OK, one last tweak: let's make the photos appear at the top of each menu item. Because each section is a flex container, we can use the order property to move its items around. In this case, select the paragraphs with the "photo" class name and give it a value less than the default 0. This will make the photo display first in the line (FIGURE 16 26): . photo { order: -1; } If you want to get fancy, you can set the width of the img elements to 100% so they always fill the width of the container. The little image I've provided gets quite blurry when it expands larger, so you can see how the responsive image techniques we covered in Chapter 7, Adding Images, might be useful here. It's not the best-looking web page in the world, but you got a chance to try out a lot of the Flexbox properties along the way. Bistro Items To Go Southwestern Napoleons Black bean purses Coconut-Corn Chowder Spicy black benn anda This vg choder with pandn ina caconut broth la light and biend of Mesican cheeses Leyes of lighat lunp rab urapped in ahets of phyllo and baknd ustil e. meet, bean, and or sal, and our handade lour lortilas. delidieus. 4 Jerk Rotisserie Chicken Thai Shrimp Kebabs Pasta Puttanescn Tender chicken alow soasted an the Skeves of shrimp marinated in lemongrass, gali, and fah sue then uiled to perfection. Aich tomato snuce simmend with iserin, lavored wa spiey and frgrst jerk s d eved with ed plantai and slied . Wuring ery piat parlie, elives, cpern, anchevis, and plesty of last red pepper laken
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY