Certainly! Here's a basic example of how you can create a sticky header using a combination of CSS and [removed]
### HTML:
```html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sticky Header</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Your content goes here. To visualize the sticky effect, add a lot of content or multiple paragraphs here. -->
Lorem ipsum...
[removed][removed]
</body>
</html>
```
### CSS (styles.css):
```css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background-color: #333;
color: #fff;
padding: 10px 20px;
width: 100%;
top: 0;
position: -webkit-sticky; /* Safari */
position: sticky;
z-index: 1000;
}
.content {
padding: 20px;
}
```
### JavaScript (scripts.js):
```javascript
// Get the header
var header = document.getElementById("stickyHeader");
// Get the offset position of the navbar
var sticky = header.offsetTop;
// Add the sticky class to the header when you reach its scroll position. Remove "sticky" when you leave the scroll position
window.onscroll = function() {
if (window.pageYOffset > sticky) {
header.classList.add("sticky");
} else {
header.classList.remove("sticky");
}
};
```
For the above code, when you scroll down, the header remains at the top of the page. The JavaScript is used to make this effect compatible with older browsers or any that don't support the `position: sticky` CSS property.
все замечательно: коммуникация с менеджером, упаковка и доставка и конечно, акционная цена была кстати :)
+ приятный бонус:
- когда выбирала набор и читала отзывы, многие писали, что переворачивать нельзя, т.к. все рассыпается внутри. я перевернула коробки раз 10 - все приборы остались на местах. все супер!
Упаковка тоже хорошая, никаких следов хранения (ни потертостей ни пыли).
Магазину спасибо за качественный товар и сервис!