Показать сообщение отдельно
  #8 (permalink)  
Старый 22.08.2012, 21:23
Отправить личное сообщение для Octane Посмотреть профиль Найти все сообщения от Octane  
Регистрация: 10.07.2008
Сообщений: 3,873

Как-то так:
<html>
<head>
	<meta charset="utf-8">
	<title>…</title>
	<style>
		.details > input:checked + .text {
			display: none;
		}
		.details input {
			visibility: hidden;
		}
		.details label {
			cursor: pointer;
			color: #00f;
			text-decoration: underline;
		}
	</style>
</head>
<body>
	<div class="details">
		<label for="trigger">Скрыть/показать</label>
		<input id="trigger" type="checkbox">
		<div class="text">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
	</div>
</body>
</html>
Ответить с цитированием