0
How to make a matrix in the output
hi guys can u tell me how to make a matrix in the output with Web program.. im so confusing
5 Answers
+ 2
What are you calling "matrix"? @@
In Html, you can display tabular data using <table> family elements/structure...
So, the mathematical matrix:
1 2 3
4 5 6
7 8 9
can be well semantically be done by:
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</table>
which you can style with Css ^^
+ 2
Your name?
What the relation between your name and << how to make a matrix in the output >>?
Answer to my first question at least between asking another one: what are you calling matrix? @@
0
but. how to make my name
- 1
im checking your code such i know! are u copying my code?
- 2
hhmmm nahh