Skip to content

Instantly share code, notes, and snippets.

View hwigyeom's full-sized avatar

NOH HWIGYEOM (노휘겸) hwigyeom

View GitHub Profile
@hwigyeom
hwigyeom / fluid-text-with-clamp.md
Created September 20, 2024 02:00
CSS Fluid Typography with clamp()
@hwigyeom
hwigyeom / flex.scss
Created November 22, 2017 11:34
flex 를 이용한 테이블 레이아웃
.container {
box-sizing: border-box;
width: 601px;
height: 601px;
border: 1px solid #555;
margin: 20px;
display: flex;
flex-direction: column;
> .row {
@hwigyeom
hwigyeom / Startup.cs
Created November 21, 2017 14:50
ASP.NET Core 에서 한글 문자열이 인코딩되어 출력되는 문제 해결
services.Configure<WebEncoderOptions>(options =>
{
options.TextEncoderSettings = new TextEncoderSettings(UnicodeRanges.All); // 한글이 인코딩되는 문제 해결
});