KB Blog
Navigation

Angular

Services

AWS

CLI Elastic Beanstalk EC2 RDS VPC

CircleCI

AWS Configuration Workflow and deployment

CSS / SASS

Bootstrap Flexbox Fonts Margin and Padding Tables Variable in SASS

Docker

Getting started

Git

Git branches Content versioning Credentials Git remotes Git tags

Go

Installation

Heroku

CLI

JavaScript

Async / await Service Workers Webpack Workbox

Jekyll

Filter Markdown

Markdown

Images

MySQL

Getting started

PostgreSQL

Installation

PowerShell

Profiles Profiles

Rails

Serialization Active Storage Routing

ReactJS

React + CI Documentation Props Redux Saga

Surge.sh

Getting Started

Travis CI

Deployment Encrypting variables Notifications

Ubuntu

Language Python & Django

Visual Studio Code

Extensions

Vue.js

Pwa Routing Vuepress Vuex

Tables

Manage tables style:

  • To avoid having space between td
    table {
      border-collapse: collapse;
    }
    

    Link: w3c tutorial

  • To have alternate rows style:
    tr:nth-child(even) {
      background-color: #123456;
    }
    

    Link: StackOverflow


Sources:

css tables

Mentionned:

  • 11 Dec 2018 Styling table