목록전체 글 (91)
금융을 따라 흐르는 블로그
수평 transform: translateX(-50%); 수직 transform: translateY(-50%); 수평&수직 dispaly: flex; justify-content: center; align-items: center; 수평 정렬 사용 예시 width: 200px; position: relative; left: 50%; -> 레이어의 왼쪽 모서리가 화면의 50%에서부터 시작하여 출력됨 width: 200px; position: relative; left: 50%; transform: translateX(-50%); -> 레이어의 왼쪽 모서리가 화면의 50%에서 width값의 -50%인 100px 만큼 왼쪽으로 이동이 되어 가운데 정렬이 됨
number : 0.0부터 1.0까지의 수를 넣습니다. initial : 기본값으로 설정합니다. inherit : 부모 요소의 속성값을 상속받습니다. Lorem Ipsum Dolor. Lorem Ipsum Dolor.
You can use the OpenAI GPT-3 API to: Generate text in a variety of styles and formats, such as creative writing, technical writing, news articles, and more. Respond to natural language questions with relevant and coherent answers. Generate chatbot responses for customer service, FAQs, and other conversational interactions. Summarize long texts into shorter, more concise versions. Translate text ..
1. XMLHttpRequest object There are a few ways to make an HTTP request in JavaScript, but one of the most popular and widely-used methods is the XMLHttpRequest object. Here's an example of how to use it to make a GET request: const xhr = new XMLHttpRequest(); xhr.open('GET', 'https://example.com'); xhr.onload = function() { if (xhr.status === 200) { console.log(xhr.responseText); } }; xhr.send();..
언어가 영어로 되어있어서 생기는 문제일 수 있다. kr로 지정하고 읽는 방향을 left to right html { direction: ltr; } CSS코드에 넣으면 된다.
There are several ways to make an HTTP request in JavaScript, but the most common way is to use the fetch() function, which is a built-in function in modern browsers. Here is an example of how you can use fetch() to make a GET request to an API: fetch('https://jsonplaceholder.typicode.com/todos/1') .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error(..