Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
<table>
    <tr>
        <td>Matricule</td>
        <td>Nom</td>
        <td>Prenom</td>

    </tr>

</table>
<script src="~/Scripts/jquery-3.3.1.js"></script>
<script>


    content of the code  table 1

</script>


<table>
    <tr>
        <td>Id</td>
        <td>Niveau</td>
        <td>diametre</td>

    </tr>

</table>
<script src="~/Scripts/jquery-3.3.1.js"></script>
<script>


    content of the code  table 2

</script>


What I have tried:

I want it to have space between the display of the two tables.
But they too stick the posters
Posted
Comments
Richard Deeming 19-Dec-19 14:10pm    
There's nowhere near enough information here for anyone to help you. You need to clearly describe the problem, what you've tried, and where you're stuck.

And I suspect you may need to find a better translator: "they too stick the posters" doesn't make any sense to me.
Member 14663996 19-Dec-19 14:15pm    
My problem is that I want to create space between the display of the two tables
Richard Deeming 19-Dec-19 14:18pm    
That doesn't match your question title. :)

What have you tried? The usual approach would be to add a margin[^] to the tables.

You'll probably also run into problems with the scripts, because you seem to be including jQuery multiple times.
Member 14663996 19-Dec-19 14:24pm    
Yes it's true I can't display the two tables with the same javascript function. I have to duplicate the javascript code although the code is the same
Richard Deeming 19-Dec-19 14:25pm    
But you're including jQuery twice. You have two copies of:
<script src="~/Scripts/jquery-3.3.1.js"></script>

You only need to include it once.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900