Показать сообщение отдельно
  #3 (permalink)  
Старый 25.06.2017, 02:22
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

<html>
<head>
	<style>
	</style>
</head>
<body>
	<button id="id">Добавить</button>
	<script>
		document.getElementById("id").onclick = function(){
			document.querySelector('style').innerHTML += '\
			.left-form:before{\
				content: "";\
				display: none;\
				height: 187px;\
				width: 246px;\
				outline: 4px solid #00aeef;\
				position: absolute;\
				left: 15px;\
				top: 22px;\
			}\
			.left-form:focus:before{\
				display: block;\
			}\
			.left-form:after{\
				content: "";\
				display: none;\
				width: 36px;\
				height: 36px;\
				background: #00aeef;\
				background-image: url("../img/ok.png");\
				background-repeat: no-repeat;\
				background-position: center;\
				position: absolute;\
				right: 72px;\
				top: 20px;\
			}\
			.left-form:focus:after{\
				display: block;\
			}';
		};
	</script>
</body>
</html>

добавить можно так
Ответить с цитированием