Показать сообщение отдельно
  #2 (permalink)  
Старый 09.04.2021, 04:57
Кандидат Javascript-наук
Отправить личное сообщение для fori Посмотреть профиль Найти все сообщения от fori
 
Регистрация: 27.01.2021
Сообщений: 117

Вобщем удалось решыть поставив разные id, но хотелось бы без id))
<!DOCTYPE html>

<body>
	<svg>
		<linearGradient id="myGradient1">
			<stop offset="0%" stop-color="silver" class="stop-start" />
			<stop offset="100%" stop-color="gold" class="stop-end" />
		</linearGradient>
		<rect fill="url(#myGradient1)" width="100%" height="100%" />
	</svg>
	<svg>
		<linearGradient id="myGradient2">
			<stop offset="0%" stop-color="silver" class="stop-start" />
			<stop offset="100%" stop-color="gold" class="stop-end" />
		</linearGradient>
		<rect fill="url(#myGradient2)" width="100%" height="100%" />
	</svg>
</body>
<style>
	svg:hover .stop-start {
		stop-color: gold;
	}

	svg:hover .stop-end {
		stop-color: black;
	}
</style>

</html>
Ответить с цитированием