Check CSS title attribute value empty or not











up vote
0
down vote

favorite












I have a table like this and on desktop everything works fine
Here is HTML:



<table class="responsive-table table-bordered ">
<thead>
<tr>
<th scope="col">Title 1</th>
<th scope="col">Title 2</th>
<th scope="col">Title 3</th>
<th scope="col">Title 4 </th>
<th scope="col">Title 5</th>
<th scope="col">Title 6</th>
</tr>
</thead>
<tbody>
<tr>
<td data-title="Title 1:">
<span>Some title</span>

</td>
<td data-title="Title 2:">60</td>
<td data-title="Title 3">0</td>
<td data-title="Title 4:">5.0</td>
<td data-title="Title 5:">
<button>Add</button>>

</td>
<td data-title="Title 6:"></td>
</tr>

</tbody>
</table>


Problem is when I'm on mobile screen and value is not entered, it screws my layout, but when I put something like -, or . everything works fine. Here is pictureenter image description here



Is there any solution how to fix this? Check title attribute value is empty or not? Help please



Also my css is:



 td[data-title]:before {
content: attr(data-title);
float: left;
font-size: 1em;
color: rgba(94, 93, 82, 0.75);
}









share|improve this question






















  • Try setting minimum-height of cell or row.
    – Zydnar
    Nov 19 at 11:36












  • that is cause the thead hasn't got any padding
    – Paplusc
    Nov 19 at 11:39










  • Besides it's quite strange table, where the first column is table head. Some HTML attributes like <table> has builtin CSS attributes like display: table. If you want to do something really custom use <div> and <span> or use first all: initial and then add your styles. And for semantics are aria attributes.
    – Zydnar
    Nov 19 at 11:41

















up vote
0
down vote

favorite












I have a table like this and on desktop everything works fine
Here is HTML:



<table class="responsive-table table-bordered ">
<thead>
<tr>
<th scope="col">Title 1</th>
<th scope="col">Title 2</th>
<th scope="col">Title 3</th>
<th scope="col">Title 4 </th>
<th scope="col">Title 5</th>
<th scope="col">Title 6</th>
</tr>
</thead>
<tbody>
<tr>
<td data-title="Title 1:">
<span>Some title</span>

</td>
<td data-title="Title 2:">60</td>
<td data-title="Title 3">0</td>
<td data-title="Title 4:">5.0</td>
<td data-title="Title 5:">
<button>Add</button>>

</td>
<td data-title="Title 6:"></td>
</tr>

</tbody>
</table>


Problem is when I'm on mobile screen and value is not entered, it screws my layout, but when I put something like -, or . everything works fine. Here is pictureenter image description here



Is there any solution how to fix this? Check title attribute value is empty or not? Help please



Also my css is:



 td[data-title]:before {
content: attr(data-title);
float: left;
font-size: 1em;
color: rgba(94, 93, 82, 0.75);
}









share|improve this question






















  • Try setting minimum-height of cell or row.
    – Zydnar
    Nov 19 at 11:36












  • that is cause the thead hasn't got any padding
    – Paplusc
    Nov 19 at 11:39










  • Besides it's quite strange table, where the first column is table head. Some HTML attributes like <table> has builtin CSS attributes like display: table. If you want to do something really custom use <div> and <span> or use first all: initial and then add your styles. And for semantics are aria attributes.
    – Zydnar
    Nov 19 at 11:41















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have a table like this and on desktop everything works fine
Here is HTML:



<table class="responsive-table table-bordered ">
<thead>
<tr>
<th scope="col">Title 1</th>
<th scope="col">Title 2</th>
<th scope="col">Title 3</th>
<th scope="col">Title 4 </th>
<th scope="col">Title 5</th>
<th scope="col">Title 6</th>
</tr>
</thead>
<tbody>
<tr>
<td data-title="Title 1:">
<span>Some title</span>

</td>
<td data-title="Title 2:">60</td>
<td data-title="Title 3">0</td>
<td data-title="Title 4:">5.0</td>
<td data-title="Title 5:">
<button>Add</button>>

</td>
<td data-title="Title 6:"></td>
</tr>

</tbody>
</table>


Problem is when I'm on mobile screen and value is not entered, it screws my layout, but when I put something like -, or . everything works fine. Here is pictureenter image description here



Is there any solution how to fix this? Check title attribute value is empty or not? Help please



Also my css is:



 td[data-title]:before {
content: attr(data-title);
float: left;
font-size: 1em;
color: rgba(94, 93, 82, 0.75);
}









share|improve this question













I have a table like this and on desktop everything works fine
Here is HTML:



<table class="responsive-table table-bordered ">
<thead>
<tr>
<th scope="col">Title 1</th>
<th scope="col">Title 2</th>
<th scope="col">Title 3</th>
<th scope="col">Title 4 </th>
<th scope="col">Title 5</th>
<th scope="col">Title 6</th>
</tr>
</thead>
<tbody>
<tr>
<td data-title="Title 1:">
<span>Some title</span>

</td>
<td data-title="Title 2:">60</td>
<td data-title="Title 3">0</td>
<td data-title="Title 4:">5.0</td>
<td data-title="Title 5:">
<button>Add</button>>

</td>
<td data-title="Title 6:"></td>
</tr>

</tbody>
</table>


Problem is when I'm on mobile screen and value is not entered, it screws my layout, but when I put something like -, or . everything works fine. Here is pictureenter image description here



Is there any solution how to fix this? Check title attribute value is empty or not? Help please



Also my css is:



 td[data-title]:before {
content: attr(data-title);
float: left;
font-size: 1em;
color: rgba(94, 93, 82, 0.75);
}






html css html5 css3 responsive-design






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 at 11:34









jomskris

205




205












  • Try setting minimum-height of cell or row.
    – Zydnar
    Nov 19 at 11:36












  • that is cause the thead hasn't got any padding
    – Paplusc
    Nov 19 at 11:39










  • Besides it's quite strange table, where the first column is table head. Some HTML attributes like <table> has builtin CSS attributes like display: table. If you want to do something really custom use <div> and <span> or use first all: initial and then add your styles. And for semantics are aria attributes.
    – Zydnar
    Nov 19 at 11:41




















  • Try setting minimum-height of cell or row.
    – Zydnar
    Nov 19 at 11:36












  • that is cause the thead hasn't got any padding
    – Paplusc
    Nov 19 at 11:39










  • Besides it's quite strange table, where the first column is table head. Some HTML attributes like <table> has builtin CSS attributes like display: table. If you want to do something really custom use <div> and <span> or use first all: initial and then add your styles. And for semantics are aria attributes.
    – Zydnar
    Nov 19 at 11:41


















Try setting minimum-height of cell or row.
– Zydnar
Nov 19 at 11:36






Try setting minimum-height of cell or row.
– Zydnar
Nov 19 at 11:36














that is cause the thead hasn't got any padding
– Paplusc
Nov 19 at 11:39




that is cause the thead hasn't got any padding
– Paplusc
Nov 19 at 11:39












Besides it's quite strange table, where the first column is table head. Some HTML attributes like <table> has builtin CSS attributes like display: table. If you want to do something really custom use <div> and <span> or use first all: initial and then add your styles. And for semantics are aria attributes.
– Zydnar
Nov 19 at 11:41






Besides it's quite strange table, where the first column is table head. Some HTML attributes like <table> has builtin CSS attributes like display: table. If you want to do something really custom use <div> and <span> or use first all: initial and then add your styles. And for semantics are aria attributes.
– Zydnar
Nov 19 at 11:41














1 Answer
1






active

oldest

votes

















up vote
0
down vote













Try this:



td[data-title]{ padding: 1rem; }


Adjust the value of the padding you need.






share|improve this answer








New contributor




javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373772%2fcheck-css-title-attribute-value-empty-or-not%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    Try this:



    td[data-title]{ padding: 1rem; }


    Adjust the value of the padding you need.






    share|improve this answer








    New contributor




    javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote













      Try this:



      td[data-title]{ padding: 1rem; }


      Adjust the value of the padding you need.






      share|improve this answer








      New contributor




      javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        up vote
        0
        down vote










        up vote
        0
        down vote









        Try this:



        td[data-title]{ padding: 1rem; }


        Adjust the value of the padding you need.






        share|improve this answer








        New contributor




        javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        Try this:



        td[data-title]{ padding: 1rem; }


        Adjust the value of the padding you need.







        share|improve this answer








        New contributor




        javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered 2 days ago









        javimovi

        976




        976




        New contributor




        javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        javimovi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373772%2fcheck-css-title-attribute-value-empty-or-not%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith