Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

how to apply border to table in angular

td.mat-cell {
 /* row padding */
 padding: 16px 0;
 /* row border */
 border-bottom: 1px solid #ffa600;
 border-top: 1px solid #ffa600;
}

td.mat-cell:first-child {
  /* row border */
  border-left: 1px solid #ffa600;
}

td.mat-cell:last-child {
  /* row border */
  border-right: 1px solid #ffa600;
}

table {
  /* row spacing / margin */
  border-spacing: 0 8px !important;
} 
Comment

PREVIOUS NEXT
Code Example
Javascript :: anchor click event angular refresh page 
Javascript :: how to get class name of element in javascript 
Javascript :: react native gif dont work 
Javascript :: how to toggle navbar using javascript 
Javascript :: index of 
Javascript :: delete element of array javascript 
Javascript :: sweet alert angular 
Javascript :: javascript date set hours minutes seconds to 0 
Javascript :: javascript looping through object 
Javascript :: mongodb bulk update 
Javascript :: js socket.emit 
Javascript :: ngmodel component angular 
Javascript :: vue js count down timer 
Javascript :: faker.js 
Javascript :: js get each pair of values from an array of objects 
Javascript :: check if an array contains a number in javascript 
Javascript :: object find key javascript 
Javascript :: javascript find the longest word in a string 
Javascript :: fetch data with axios in reactjs 
Javascript :: react fragment inside map with key prop 
Javascript :: perform a function on each element of array javascript 
Javascript :: get filenem js 
Javascript :: es6 array to object keys 
Javascript :: javascript jquery map a range of numbers 
Javascript :: javascript parsefloat 
Javascript :: javascript remove first element from array 
Javascript :: inject js on button click chrome extension 
Javascript :: types for parameter destructuring 
Javascript :: collapse in angular 4 
Javascript :: added font to react native 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =