일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- API
- solidity
- bitcoin
- 기준
- node.js
- Props
- typeScript
- tailwindcss
- hardhat
- evm
- concept
- useState
- graphQL
- CLASS
- Interface
- blockchain
- error
- REACT
- Ethereum
- 삶
- HTML
- CSS
- JavaScript
- SSR
- built in object
- web
- express.js
- middleware
- nextJS
- Redux
- Today
- Total
목록Frontend (231)
ReasonJun
Problem : I wrote the Carousel code as shown below. I wanted the width of the carousel to be responsive to the screen size, but it wasn't, so I specified a maximum width for each screen size : "max-w-sm xs:max-w-md sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-7xl". It adjusted well to the screen size, but the problem was that there were often black spaces. {items.map((item, i..

Env : Nextjs 14, shadcn Problem : I want Tooltip to be placed at the top, but the z-index value is not applied due to the rendering order in Dom. Fix :use createPortalWhat is createPortal ? (Cluade Sonnet 3.5 Answer)Certainly. `createPortal` is a powerful feature provided by React that allows you to render a component's children into a different part of the DOM tree, outside of the component's o..
Problem : I am currently using an M1 PRO MacBook with dual monitors in FULL-HD quality. I have my code on the MacBook screen and the webview on the dual monitors. I thought it would work fine, but the cursor pointer doesn't work in FULL-HD and the CSS event effects look different. m1 pro macbook screen : full-hd screen : GPT 4O says it may have the following issues : Explanation for CSS Ev..

error : While setting up the middleware to utilize the new clerk, I created the middleware with a different name so that it would not be activated for ease of development. Then the above error occurred. When I checked, the clerk was using its own jwt system and was unable to retrieve session data as a header, so it was relying on the auth system in middleware. Therefore, the server side clerk mo..

Problem : In the CSS code surrounding the outermost tag as shown below, justify-center provided a problem with height when accordian was activated. When justify-center is applied in h-screen, the top component is cut off when Accordian, which provides dynamic height, is activated. Solution : When justify-center was removed, the height value was modified based on the content, and no components we..
IndexedDB is a powerful API provided by web browsers for managing a local NoSQL database within client-side applications. Here's a detailed breakdown of its key features and functionalities: Purpose: Persistently store large amounts of structured data in the user's browser, enabling offline-capable web applications. Offer rich query capabilities for efficient data retrieval based on indexes. Key..