Skip to content

Instantly share code, notes, and snippets.

View imharshm's full-sized avatar

Harshal Hari Mahajan imharshm

View GitHub Profile
@imharshm
imharshm / style.css
Created August 17, 2020 11:00
table header fixed using pure css
table,
tr td {
border: 1px solid red;
}
tbody {
display: block;
height: 200px;
overflow: auto;
}
@imharshm
imharshm / index.html
Last active January 21, 2021 10:38
CSS triangle custom border color
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
.arrow {
position: relative;
margin: 3rem;
width: 80%;
@imharshm
imharshm / index.html
Last active February 22, 2021 11:40
align text vertically inside div with ellipsis 3 dots (...)
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
.container {
width: 300px;
border: 1px solid #e7e7e7;
border-radius: 4px;