The position property specifies the type of positioning method used for an element
There are four different position values:
Elements are then positioned using the top, bottom, left, and right properties. However, these properties will not work unless the position property is set first. They also work differently depending on the position value.
HTML elements are positioned static by default.
Static positioned elements are not affected by the top, bottom, left, and right properties.
An element with position: static; is not positioned in any special way; it is always positioned according to the normal flow of the page:
The display property specifies the type of box used for an HTML element
The overflow property specifies what happens if content overflows an element's box.
The clip property lets you specify a rectangle to clip an absolutely positioned element
Create such article block
The layout is flexible (its width is changed according to the browser width)
Create this menu
Hover effect
Create Dropdown top menu using CSS and HTML
Hover
Click
Hover menu item
Tips: Pseudo-class, checkbox, label, for, Adjacent selector
Create thumbnails using three approaches:
Create such block
Using this layout
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Task 2</title>
</head>
<body>
<div class="arrow-box">Lorem ipsum dolor sit amet,
consectetur adipisicing elit. Praesentium soluta,
enim assumenda nemo ullam ab cupiditate animi expedita est
a quisquam quae nulla natus at inventore veniam, illo, vel debitis.</div>
</body>
</html>
Create this tab
Pay attention to the shadows
https://events.yandex.ru/lib/talks/563/ CSS: Свободное перемещение и позиционирование
http://learnlayout.com/toc.html Learn CSS Layout
https://webref.ru/css/type/position Позиционирование
https://webref.ru/css/type/format Форматирование
https://webref.ru/css/type/flex Флексы
http://html5.by/blog/flexbox/ Что такое Flexbox?
http://www.youtube.com/watch?v=XD4oOt_oEFU Знакомство с CSS3 Flexbox
http://habrahabr.ru/post/259783/ Flexbox на примере игрального кубика
http://habrahabr.ru/post/242545/ Практическое применение FlexBox
http://habrahabr.ru/post/257253/ Строим с flexbox
http://webkab.ru/izuchaem-flexbox/ Изучаем Flexbox
http://css-live.ru/articles/vizualnoe-rukovodstvo-po-svojstvam-flexbox-iz-css3.html Визуальное руководство по свойствам Flexbox из CSS3
https://css-tricks.com/snippets/css/a-guide-to-flexbox/ A Complete Guide to Flexbox