View Single Post
Old 12-19-2015, 04:52 AM   #19
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,691
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by JSWolf View Post
It does not work with ADE 2.0.1 or ADE 3.x.. I just added font-weight: 500 to p in the CSS and the font is displayed as normal. It has no more weight than if the font-weight wasn't there.
Had you actually read the specs that I've linked to you'd found out that the numerical equivalent of "bold" is 700. I.e., any value between 400 and 600 is interpreted as "normal." (rubeus has never claimed that 500 is equivalent to "bold.")

If you still don't believe me try the following code:

Spoiler:
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
  <style type="text/css">
/*<![CDATA[*/
  span {font-weight: 700; }
  /*]]>*/
  </style>
</head>

<body>
  <h3>font-weight test</h3>

  <p>This is <span>bold text</span>.</p>
</body>
</html>
Doitsu is offline   Reply With Quote