-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #493 from Czechitas-podklady-WEB/492-responzivita-…
…1-přidat-cvičení Responzivita 1: Přidat cvičení
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Cvičení: Flexibilní článek | ||
|
||
::exc[cvlekce/responsive-article] |
Binary file added
BIN
+8.53 MB
...css/bem-a-responzivni-design/cvlekce/responsive-article/assets/flexi-clanek.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions
43
html-a-css/bem-a-responzivni-design/cvlekce/responsive-article/exercise.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: Flexibilní článek | ||
demand: 2 | ||
--- | ||
|
||
Použijte šablonu [cviceni-flexibilni-clanek](https://github.com/Czechitas-podklady-WEB/cviceni-flexibilni-clanek). | ||
Naklonujte si repozitář a spusťte si `npx serve`. | ||
|
||
V HTML souboru je připravený obsah stránky. V souboru `style.css` je základní stylování, vlastní styly přidejte dolů pod komentář. | ||
|
||
Nastylujte flexibilní layout článku. Na širších obrazovkách, kde se obrázek a text vejdou vedle sebe, by měl obrázek zabírat 40% boxu a text 60% boxu. | ||
|
||
Jak se bude zmenšovat obrazovka, bude se zmenšovat šířka obrázku i textu. Když dosáhne obrázek své minimální velikosti 250px, měl by se text zalomit dolů pod něj. | ||
|
||
Aby se nám obrázek při zvětšování obrazovky moc neroztáhl, měl by mít nastavenou maximální šířku 300px. | ||
|
||
Cvičení je převzaté z knihy [CSS Moderní layout](https://www.vzhurudolu.cz/css-layout/), kde je mnoho skvělých tipů, jak si procvičit flexbox a další CSS techniky. | ||
|
||
Výsledek by měl vypadat následovně | ||
::fig[výsledek]{src=assets/flexi-clanek.gif} | ||
|
||
:::solution | ||
|
||
```css | ||
.article { | ||
display: flex; | ||
flex-wrap: wrap; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.article__image { | ||
flex: 1 1 40%; | ||
max-width: 300px; | ||
min-width: 250px; | ||
} | ||
|
||
.article__text { | ||
flex: 1 1 60%; | ||
} | ||
``` | ||
|
||
::: |