분류 전체보기

영어공부

CSS Margins

CSS Margins The CSS margin properties are used to create space around elements, outside of any defined borders. With CSS, you have full control over the margins. There are properties for setting the margin for each side of an element (top, right, bottom, and left). CSS 여백 css 여백 속성은 테두리의 바깥편, 요소의 주변의 공간을 만들기 위해 사용되어집니다. 너는 여백의 완벽한 제어권을 가진다. 요소의 각면에 대해서 여백을 설정하는 속성이 있다. Margin - Individual Sides ..

영어공부

CSS Borders

CSS Border Properties The CSS border properties allow you to specify the style, width, and color of an element's border. CSS 테두리 속성 css 테두리 속성은 너가 요소의 테두리의 색깔, 두께, 모양을 명시하기 위해 사용할수 있다. CSS Border Style The border-style property specifies what kind of border to display. 테두리 모양 border-style 속성은 보여주고자 하는 테두리의 종류를 명시한다. CSS Border Width The border-width property specifies the width of the four borde..

영어공부

CSS background-color

The background-color property specifies the background color of an element. 배경 속성은 요소의 배경색을 명시한다. With CSS, a color is most often specified by: a valid color name - like "red" a HEX value - like "#ff0000" an RGB value - like "rgb(255,0,0)" Look at CSS Color Values for a complete list of possible color values. CSS, 색깔은 자주 다음과 같이 명시 된다. ● 합당한 색깔 red 같은 ● 헥사 값 예를들면 #ff0000 같은 ● RGB 값 예를들면 rgb(255,0..

영어공부

CSS Colors

Colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values. 색깔은 미리 정의된 색의 이름을 사용하거나, RGB, HEX, HSL RGBA, HSLA 값을 사용하는 것으로 명시되어질 수 있다. CSS Color Names In CSS, a color can be specified by using a color name: CSS 컬러 이름 css 내에서 색깔은 색의 이름을 사용하므로 명시되어질 수 있다. CSS Background Color You can set the background color for HTML elements: CSS 배경색깔 너는 html 요소에 배경색을 설정할 수 있다. CSS Text..

영어공부

How To Add CSS

When a browser reads a style sheet, it will format the HTML document according to the information in the style sheet. 브라우저가 스타일시트를 읽어드릴때, 브라우저는 스타일시트의 정보에 따라서 HTML document 를 형태를 바꾼다. Three Ways to Insert CSS There are three ways of inserting a style sheet: External CSS Internal CSS Inline CSS css를 삽입하는 3가지 방법 여기 스타일 시트를 삽입하는 3가지 방법이 있다. ● 외부 css ● 내부 css ● 라인 안의 css External CSS With an externa..

영어공부

CSS Selectors

CSS Selectors CSS selectors are used to "find" (or select) the HTML elements you want to style. We can divide CSS selectors into five categories: Simple selectors (select elements based on name, id, class) Combinator selectors (select elements based on a specific relationship between them) Pseudo-class selectors (select elements based on a certain state) Pseudo-elements selectors (select and sty..

영어공부

CSS Syntax

CSS Syntax A CSS rule-set consists of a selector and a declaration block: The selector points to the HTML element you want to style. The declaration block contains one or more declarations separated by semicolons. Each declaration includes a CSS property name and a value, separated by a colon. A CSS declaration always ends with a semicolon, and declaration blocks are surrounded by curly braces. ..

제조산업/MES

MES 란 무엇인가?

***** 2022년도 버전 작성! https://jeongsu.tistory.com/255?category=737280 MES 란 무엇인가? 2021 ver 4년동안 다닌 회사를 그만두면서 마지막으로 MES란 무엇인가를 정리하고 마무리 하려고 합니다. #아주 짧게 요약을 먼저 하자면, MES는 "어떻게 효율적으로 생산을 할수 있을까?" 를 고민하는 도메 jeongsu.tistory.com MES 개발자를 하면 안되는 이유작성ㅋㅋ MES 개발을 하면 안되는 이유 MES 개발자를 하면 안되는 이유 4년간 MES 개발에 몸담으면서, 느낀 점을 솔직히 말해보려고 합니다. 왜? MES 개발을 하면 안되는지 ㅋㅋ 가볍게 봐주시길 바랍니다. 재미로 읽어주세요 글은 MES 개발자를 하면 안되는 이유들을 말 jeong..

dev/trouble shooting

java Linux DB Connect Delay 현상

운영환경에서 원인을 알 수 없는 Delay 현상이 발견됐다. 할 수 있는 모든 것을 의심하며, 원인을 찾았다. 그중 하나가 Linux 위의 Java Program 이 DB connection 할때, 느려진다는 것이다. 이유는 Linux 위의 java Process 가 DB의 연결할때, 난수가 필요한대, 그 난수의 발생이 오래걸린다나 뭐라나 자세한 내용은 https://waspro.tistory.com/254 [Oracle] getConnection 지연 조치 방법 본 포스팅은 Oracle / Tibero 접속세션을 구분하는 방법에 대한 고찰입니다. 본 가이드는 /dev/random 으로 인한 지연에 대해 설명하고 있습니다. /dev/random 이란? random 의 의미가 "임의의", "일정치 않는"의..

dev/프로그래밍

서버별 ElapsedTime 그래프로 그리기(feat : ggplot2)

서버별로 메시지 수행시간을 그래프로 그리려고 한다. 우선 데이터는 아래 사진과 같이 //서버 이름 // 메시지 이벤트 이름// 이벤트 끝난시간// 메시지 수행시간// 이벤트 처리 결과 의 컬럼으로 이루어져 있다. 이제 위의 데이터를 각각의 서버별로 그래프를 그리려고 한다. 내가 원하는 그래프는 다음 사진과 같다. #install.packages("rJava") #install.packages("DBI") #install.packages("RJDBC") #install.packages("ggplot2") library(DBI) library(rJava) library(RJDBC) library('ggplot2') drv

jeongsu
'분류 전체보기' 카테고리의 글 목록 (16 Page)