1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>add demo</title>
- <style>
- div {
- width: 60px;
- height: 60px;
- margin: 10px;
- float: left;
- }
- p {
- clear: left;
- font-weight: bold;
- font-size: 16px;
- color: blue;
- margin: 0 10px;
- padding: 2px;
- }
- </style>
- <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
- <script src="demoadd.js"></script>
- </head>
- <body>
-
- <div></div>
- <div></div>
- <div></div>
- <div></div>
- <div></div>
- <div></div>
-
- <p>Added this... (notice no border)</p>
-
- <script>
- rtl.run();
- </script>
-
- </body>
- </html>
|