Jump to content
Fórum Script Brasil
  • 0

TABELAS=só linhas horizontais


PauloRic

Question

Boa Tarde,

existe a opção de fazer contorno de linhas em cada celula da tabela .

eu consigo fazer sómente esse contorno na Horizontal em uma tabela?? sem as linhas verticais.. ou não tem como ??

Grato,

ps: conforme o exemplo attachado, linhas em branco horizontais em destaque

5Iz9C.jpg

Edited by PauloRic
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<html>
<head>
<title>Tabela</title>
<style type="text/css">
    table { width: 300px; border-collapse: collapse; }
    td {
        border-color: #FFFFFF;
        background-color: #CCCCCC;
        border-style: solid;
        border-bottom-width: 1px;
        border-top-width: 0;
        border-right-width: 0;
        border-left-width: 0;
    }
</style>
</head>
<body>
    <table>
        <tr>
            <td><u>Time</u></td>
            <td><u>Competição</u></td>
            <td align="center"><u>Qtde</u></td>
        <tr/>
        <tr>
            <td>Cocobongo</td>
            <td>TI 23228</td>
            <td align="center">1</td>
        <tr/>
        <tr><td colspan="3">...</td><tr/>
    </table>
</body>
</html>

Resumindo...

A parte que lhe interessa:

<style type="text/css">

table { width: 300px; border-collapse: collapse; }

td {

background-color: #CCCCCC;

border-color: #FFFFFF;

border-style: solid;

border-bottom-width: 1px;

border-top-width: 0;

border-right-width: 0;

border-left-width: 0;

}

</style>

Abraço.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...