2011-07-16 23:33:46 +04:00
|
|
|
<!--
|
|
|
|
* @author Niklas von Hertzen <niklas at hertzen.com>
|
|
|
|
* @created 16.7.2011
|
|
|
|
* @website http://hertzen.com
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2011-07-16 23:34:11 +04:00
|
|
|
<title>Text-decoration:line-through tests</title>
|
2011-07-16 23:33:46 +04:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<link href="#" type="text/css" rel="stylesheet">
|
|
|
|
|
2011-12-11 21:12:20 +04:00
|
|
|
<script type="text/javascript" src="test.js"></script>
|
2011-07-16 23:33:46 +04:00
|
|
|
<script type="text/javascript">
|
2011-12-11 21:12:20 +04:00
|
|
|
function setUp() {
|
2011-07-16 23:34:11 +04:00
|
|
|
$('body').empty();
|
|
|
|
$.each(['arial','verdana','tahoma','courier new'],function(i,e){
|
|
|
|
var div = $('<div />').css('font-family',e).appendTo('body');
|
2011-12-11 21:12:20 +04:00
|
|
|
for(var i=0;i<=20;i++){
|
|
|
|
$('<div />').text('Testing texts').css('margin-top',1).css('border','1px solid black').css('font-size',(16+i*6)).appendTo(div);
|
|
|
|
}
|
2011-07-16 23:34:11 +04:00
|
|
|
});
|
2011-12-11 21:12:20 +04:00
|
|
|
}
|
2011-07-16 23:33:46 +04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.small{
|
|
|
|
font-size:14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.medium{
|
|
|
|
font-size:18px;
|
|
|
|
}
|
|
|
|
.large{
|
|
|
|
font-size:24px;
|
|
|
|
}
|
2011-07-16 23:34:11 +04:00
|
|
|
|
2011-07-16 23:33:46 +04:00
|
|
|
div{
|
2011-07-16 23:34:11 +04:00
|
|
|
text-decoration:line-through;
|
|
|
|
|
2011-07-16 23:33:46 +04:00
|
|
|
}
|
2011-07-16 23:34:11 +04:00
|
|
|
|
|
|
|
.lineheight{
|
|
|
|
line-height:40px;
|
|
|
|
}
|
|
|
|
|
2011-07-16 23:33:46 +04:00
|
|
|
h2 {
|
|
|
|
clear:both;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
2011-07-16 23:34:11 +04:00
|
|
|
<body>
|
|
|
|
Creating content through JavaScript
|
2011-07-16 23:33:46 +04:00
|
|
|
</body>
|
|
|
|
</html>
|