일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 기준
- middleware
- express.js
- node.js
- Ethereum
- Interface
- CLASS
- nextJS
- CSS
- JavaScript
- evm
- tailwindcss
- concept
- API
- graphQL
- Props
- HTML
- SSR
- built in object
- 삶
- typeScript
- web
- hardhat
- blockchain
- error
- Redux
- solidity
- bitcoin
- useState
- REACT
- Today
- Total
목록tailwindcss (5)
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..
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..
twMerge is a JavaScript library that merges Tailwind CSS classes without style conflicts. It is useful when you need to conditionally join Tailwind CSS classes together, or when you need to merge Tailwind CSS classes from different sources. clsx is a JavaScript library that provides a simple and efficient way to conditionally join CSS classes together. It is useful for creating reusable CSS comp..
Doing : While configuring the chat page, I wanted the chat bubbles to be on either side using 'rtl', 'ltr'. {isSender ? 'You' : receiverName} {fromNow(time)} {messageImage && ( )} {messageText && ( {messageText} )} problem: The results were as follows. Why: The issue you are facing seems to be related to the style attribute where you set the direction based on the isSender prop. The problem is t..
data-popper-placement = working well (Soluition : data-poper-placement) : Allow the part responsible for 'data-popper-placement to exist at the time of initial rendering without any conditions. {session?.user ? ( ) : ( )} not working {session?.user ? ( ) : ( )} Why? The data-dropdown-toggle attribute is being used in JavaScript code that handles the toggling of the dropdown menu based on user in..