html,
body {
min-width: 570px;
height: 300px;
margin: 0;
font-family: "Arial", sans-serif;
color: #ffffff;
background: url("football.jpg") 50% 50% no-repeat;
}
h1 {
position: relative;
width: 320px;
margin: 0;
padding-left: 40px;
word-wrap: break-word;
font-size:80px;
text-transform:uppercase;
font-weight:normal;
text-shadow:-5px 5px rgb( 0, 0, 0, 0.5);
letter-spacing:40px;
text-indent:100px;
line-height:100px;
}
h1::before {
content: "|";
position: absolute;
top: -5px;
left: -55px;
font-size:50px;
text-shadow:20px 0,
40px 0;
font-weight:bold;
}
Не могу найти ошибку .
И такой вопрос сразу: почему когда делаю испытание в мини браузере тени есть, а во вкладке реультат-нету…
Нужно увеличить размер шрифта.
rgba
вот из-за этого.
Спасибище добрый человек) про font-size сама потом подправила, а букву а наверное б долго искала…)
Как и многие сначала добавил еще 2 полосочки в content псевдоэлемента и получал 99% без вариантов :))))
keksobas
html,
body {
min-width: 570px;
height: 300px;
margin: 0;
font-family: "Arial", sans-serif;
color: #ffffff;
background: url("football.jpg") 50% 50% no-repeat;
}
h1 {
position: relative;
width: 320px;
margin: 0;
padding-left: 40px;
font-size: 80px;
font-weight: lighter;
text-transform: uppercase;
line-height: 100px;
letter-spacing: 40px;
word-wrap: break-word;
text-shadow: -5px 5px rgba(0, 0, 0, 0.5);
text-indent: 100px;
}
h1::before {
content: "|";
position: absolute;
top: -5px;
left: -55px;
font-size: 55px;
font-weight: bold;
text-shadow:
20px 0,
40px 0;
}
Вопрос : про что тут идет речь ?
Да! Ещё можно нарисовать треугольник из трёх красных непересекающихся линий прозрачного цвета. А, впрочем, на ваше усмотрение
.
1 лайк
Ineska
5
Откройте комментарии к испытанию…)
1 лайк
Как то легко
body {
margin: 0;
width: 570px;
height: 300px;
background: url(“football.jpg”) -120px -60px no-repeat;
color: #ffffff;
font-family: “Arial”, sans-serif;
}
h1 {
position: relative;
margin: 0;
padding-left: 40px;
width: 320px;
font-size: 80px;
font-weight: normal;
line-height: 100px;
word-wrap: break-word;
letter-spacing: 40px;
text-transform: uppercase;
text-shadow: -5px 5px rgba(0, 0, 0, .5);
}
h1:first-letter {
margin-left: 100px;
}
h1::before {
position: absolute;
top: -5px;
left: 45px;
content: “|”;
font-size: 55px;
font-weight: bold;
text-shadow:
20px 0px,
40px 0px;
}