Skip to content

Instantly share code, notes, and snippets.

View pronayguha13's full-sized avatar
πŸ’»
Working

Pronay Guha pronayguha13

πŸ’»
Working
View GitHub Profile
@pronayguha13
pronayguha13 / css-snippet.css
Created December 11, 2022 10:33
Random useful css snippets
//css to have ellipsis on label element
.truncate-ellipsis {
overflow: hidden;
white-space: nowrap !important;
text-overflow: ellipsis !important;
display: inline-block !important;
max-width: 12ch !important;
font-weight: 500;
}
@pronayguha13
pronayguha13 / autocomplete.html
Created May 24, 2021 00:17
Autocomplete working with unique string as autocomplete attribute vale
<form autocomplete="off" id="input-area">
<div class="input-section">
<label for="name">Name</label>
<input
type="text"
id="userNameInput"
placeholder="Enter your name"
required
autocomplete="unInput"
/>
@pronayguha13
pronayguha13 / autocomplete.html
Last active May 24, 2021 00:10
not working autocomplete with nope
<form autocomplete="off" id="input-area">
<div class="input-section">
<label for="name">Name</label>
<input
type="text"
id="userNameInput"
placeholder="Enter your name"
required
autocomplete="unInput"
/>