Skip to content Skip to sidebar Skip to footer

Can I Use Multiple

Can I use multiple

Solution 1:

You can. Try pasting it into the "direct input" part of the w3c validator for proof. You'll need it to be a full valid HTML document, e.g. something like below:

<!doctype html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
 Hi
  <aside>A1</aside>
  <aside>A2</aside>
</body>
</html>

W3C validator: http://validator.w3.org/check

Further reading: the W3C spec for aside and the MDN documentation, neither of which specify a maximum number of this element type.


Post a Comment for "Can I Use Multiple