投稿時間:2023-08-01 20:16:31 RSSフィード2023-08-01 20:00 分まとめ(21件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] ハンディファン、猛暑日は逆効果とメーカーが注意喚起 「濡れタオルとの併用を」 https://www.itmedia.co.jp/news/articles/2308/01/news169.html itmedia 2023-08-01 19:45:00
python Pythonタグが付けられた新着投稿 - Qiita python maya opionVar https://qiita.com/aizwellenstan/items/65aae0a16f7229292063 cmdsoption 2023-08-01 19:16:31
AWS AWSタグが付けられた新着投稿 - Qiita EC2コンソールに接続するとFailed to connect to your instanceが出る https://qiita.com/SUMM/items/09b96fa7b757713f14c0 amazon 2023-08-01 19:55:42
golang Goタグが付けられた新着投稿 - Qiita 【Golang】 基礎 https://qiita.com/sakuchi/items/f279f57fae696b2ca71a namejohn 2023-08-01 19:13:37
技術ブログ Developers.IO Pivotal TrackerのAPIで、PBIのTASKを追加する https://dev.classmethod.jp/articles/pivotal-tracker-add-task-with-api/ pivotaltracker 2023-08-01 10:45:02
技術ブログ Developers.IO 【Alteryx】DCMと非アクティブユーザーのスケジュール実行について #alteryx https://dev.classmethod.jp/articles/dcm-and-inactive-user-scheduling/ alteryx 2023-08-01 10:39:01
海外TECH DEV Community How to Create a Feature Comparison Table with Tailwind CSS https://dev.to/cruip_com/how-to-create-a-feature-comparison-table-with-tailwind-css-a1i How to Create a Feature Comparison Table with Tailwind CSS Live Demo DownloadThere is no doubt that one of the most complex components to design is the pricing tabs as it constantly evolves based on the characteristics and functionalities of the product and requires to be continuously tested to ensure maximum conversions Pricing tabs are used to show the cost of each specific tier and their main purpose is to display the relationship between the price and the functionalities each plan includes Speaking of functionalities in this tutorial will develop a responsive pricing table with a features comparison table This type of table is particularly useful when a product offers several features and there is a need to highlight the differences between the different plans We ve already designed something wimilar in two of our Tailwind CSS templates so if you want to see how we did it check out Stellar a dark next js landing page template and Simple a simple website template Building the table with CSS dridAlright let s create a new HTML document where we ll write the code for our price table using Tailwind CSS Now here s the plan for our price table structure On smaller screens we want a single column layout to keep things neat and tidy Once we hit the md breakpoint that s a browser window width of at least px we ll switch to a column grid layout lt div class max w sm mx auto md max w none grid md grid cols md mx text sm gt lt Column with labels gt lt section gt lt Cell with the pricing toggle gt lt Cell withLabel gt lt Cell withLabel gt lt gt lt section gt lt Essential table gt lt section gt lt Cell with price gt lt Cell with feature gt lt Cell with feature gt lt gt lt section gt lt Perform table gt lt section gt lt Cell with price gt lt Cell with feature gt lt Cell with feature gt lt gt lt section gt lt Enterprise table gt lt section gt lt Cell with price gt lt Cell with feature gt lt Cell with feature gt lt gt lt section gt lt div gt Now if you re a seasoned developer you may have already spotted an issue with the structure we just defined It works beautifully on mobile devices where the cells stack vertically but it falters when it comes to the desktop grid layout due to the wrapping of cells inside their respective lt section gt elements To fix that we ll use the CSS property display contents starting from a width of px and up By simply adding the Tailwind utility class md contents to the lt section gt element we can magically make it an invisible container allowing each cell to appear as a direct descendant of the grid lt div class max w sm mx auto md max w none grid md grid cols md mx text sm gt lt Column with labels gt lt section class md contents gt lt Pricing toggle gt lt Label gt lt Label gt lt gt lt section gt lt Essential table gt lt section class md contents gt lt Cell with price gt lt Feature gt lt Feature gt lt gt lt section gt lt Perform table gt lt section class md contents gt lt Cell with price gt lt Feature gt lt Feature gt lt gt lt section gt lt Enterprise table gt lt section class md contents gt lt Cell with price gt lt Feature gt lt Feature gt lt gt lt section gt lt div gt Okay we ve resolved one problem but there s still another hurdle to overcome before we can move forward While our layout works like a charm on mobile screens we re facing a slight issue with the cell order on desktops Since we re using CSS grid the cells naturally follow the order they appear in the HTML code As a result if we stick with the code we ve written so far our table will display the cells in this order Pricing toggle Label Label Cell with price Feature Feature Cell with price Feature Feature Cell with price Feature Feature However that s not what we want We need the cells to be displayed in the correct order like this Pricing toggle Cell with price Cell with price Cell with price Label Feature Feature Feature Label Feature Feature Feature To restore the proper cell order we ll use the CSS property order and assign a unique class to each cell to indicate its position within the grid Just like this lt div class max w sm mx auto md max w none grid md grid cols md mx text sm gt lt Column with labels gt lt section class md contents gt lt Pricing toggle gt lt div gt lt div gt lt Label gt lt div class md order gt lt div gt lt Label gt lt div class md order gt lt div gt lt gt lt section gt lt Essential table gt lt section class md contents gt lt Cell with price gt lt div gt lt div gt lt Feature gt lt div class md order gt lt div gt lt Feature gt lt div class md order gt lt div gt lt gt lt section gt lt Perform table gt lt section class md contents gt lt Cell with price gt lt div gt lt div gt lt Feature gt lt div class md order gt lt div gt lt Feature gt lt div class md order gt lt div gt lt gt lt section gt lt Enterprise table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt Cell with price gt lt div gt lt div gt lt Feature gt lt div class md order gt lt div gt lt Feature gt lt div class md order gt lt div gt lt gt lt section gt lt div gt Great We re making progress With the table structure all set it s time to inject some juicy content into those cells Creating the pricing toggle buttonLet s kick things off by creating the pricing toggle which allows users to switch between the monthly and annual prices lt div class relative bg white dark bg slate px flex flex col justify end gt lt div class pb md border b border slate dark border slate gt lt Toggle switch gt lt div class max md text center gt lt div class inline flex items center whitespace nowrap gt lt div class text sm text slate mr md max lg sr only gt Monthly lt div gt lt div class relative gt lt input type checkbox id toggle class peer sr only gt lt label for toggle class relative flex h w cursor pointer items center rounded full bg slate px outline slate transition colors before h before w before rounded full before bg white before shadow sm before transition transform before duration peer checked bg indigo peer checked before translate x full peer focus visible outline peer focus visible outline offset peer focus visible outline gray peer checked peer focus visible outline indigo gt lt span class sr only gt Pay Yearly lt span gt lt label gt lt div gt lt div class text sm text slate ml gt Yearly lt span class text emerald gt lt span gt lt div gt lt div gt lt div gt lt div gt lt div gt We ve opted for a checkbox input is the most appropriate choice in terms of accessibility The native checkbox is visible to screen readers only and styled to resemble a switch button using the power of Tailwind CSS utility classes In the following paragraphs we ll show you how to make this button functional using Alpine js Adding feature labelsThe feature labels will only be displayed on larger screens to provide a better overview and allow for easy comparison between the features of each plan However on mobile devices we won t have enough horizontal space to display them Therefore we ll follow this approach We ll use the Tailwind CSS class max md hidden to hide the labels on small screen devices Additionally we ll use the aria hidden true attribute to hide them from screen readers Inside each cell of the pricing tabs we ll include specific feature information which we ll hide on desktop screens using the sr only class We use sr only instead of hidden to ensure that all three pricing tables have all the necessary semantic content for screen readers Here s how the first column will look lt Column with labels gt lt section class md contents gt lt Pricing toggle gt lt div class relative bg white dark bg slate px flex flex col justify end gt lt div class pb md border b border slate dark border slate gt lt Toggle switch gt lt div class max md text center gt lt div class inline flex items center whitespace nowrap gt lt div class text sm text slate mr md max lg sr only gt Monthly lt div gt lt div class relative gt lt input type checkbox id toggle class peer sr only gt lt label for toggle class relative flex h w cursor pointer items center rounded full bg slate px outline slate transition colors before h before w before rounded full before bg white before shadow sm before transition transform before duration peer checked bg indigo peer checked before translate x full peer focus visible outline peer focus visible outline offset peer focus visible outline gray peer checked peer focus visible outline indigo gt lt span class sr only gt Pay Yearly lt span gt lt label gt lt div gt lt div class text sm text slate ml gt Yearly lt span class text emerald gt lt span gt lt div gt lt div gt lt div gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Account Access lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Custom Domains lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Receipts Forward lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Supplier Management lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Generate Public URLs lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt API Integrations lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Extra Add ons lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Admin Roles lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Admin Roles lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Enterprise Add ons lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Custom Connection lt div gt lt div gt lt section gt Defining content for the pricing tablesNow let s define the content for our pricing tables As you may have noticed from the demo the middle pricing table has a dark style We ve provided all three pricing tables with classes for dark variants so that you can choose which one to apply the dark style to You can do this simply by adding the dark class to the desired lt section gt element Without further explanation here s the complete HTML code including the column grid lt div class max w sm mx auto md max w none grid md grid cols md mx text sm gt lt Column with labels gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt Pricing toggle gt lt div class relative bg white dark bg slate px flex flex col justify end gt lt div class pb md border b border slate dark border slate gt lt Toggle switch gt lt div class max md text center gt lt div class inline flex items center whitespace nowrap gt lt div class text sm text slate mr md max lg sr only gt Monthly lt div gt lt div class relative gt lt input type checkbox id toggle class peer sr only gt lt label for toggle class relative flex h w cursor pointer items center rounded full bg slate px outline slate transition colors before h before w before rounded full before bg white before shadow sm before transition transform before duration peer checked bg indigo peer checked before translate x full peer focus visible outline peer focus visible outline offset peer focus visible outline gray peer checked peer focus visible outline indigo gt lt span class sr only gt Pay Yearly lt span gt lt label gt lt div gt lt div class text sm text slate ml gt Yearly lt span class text emerald gt lt span gt lt div gt lt div gt lt div gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Account Access lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Custom Domains lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Receipts Forward lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Supplier Management lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Generate Public URLs lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt API Integrations lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Extra Add ons lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Admin Roles lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Admin Roles lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Enterprise Add ons lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Custom Connection lt div gt lt div gt lt section gt lt End Column with labels gt lt Essential table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt div class relative bg white dark bg slate px lg px flex flex col justify end gt lt div class grow mb gt lt div class font semibold text slate dark text slate mb gt Essential lt div gt lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt lt div class text sm text slate gt Unlimited placeholder texts lt div gt lt div gt lt div class pb border b border slate dark border slate gt lt a class w full inline flex justify center whitespace nowrap rounded lg bg indigo px py text sm font medium text white shadow sm shadow indigo hover bg indigo focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration group href gt Get Started lt span class tracking normal text indigo group hover translate x transition transform duration ease in out ml gt amp gt lt span gt lt a gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Account Access lt span gt lt span gt lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Custom Domains lt span gt lt span gt lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Receipts Forward lt span gt lt span gt lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Supplier Management lt span gt lt span gt lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Generate Public URLs lt span gt lt span gt lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt API Integrations lt span gt lt span gt lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Extra Add ons lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Enterprise Add ons lt span gt lt span gt lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt sr only gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Custom Connection lt span gt lt span gt lt div gt lt div gt lt section gt lt End Essential table gt lt Perform table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl dark gt lt div class relative bg white dark bg slate px lg px flex flex col justify end gt lt div class absolute top right mr mt gt lt div class inline flex items center text xs font semibold py px bg emerald text white rounded full shadow sm shadow slate gt Most Popular lt div gt lt div gt lt div class grow mb gt lt div class font semibold text slate dark text slate mb gt Perform lt div gt lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt lt div class text sm text slate gt Unlimited placeholder texts lt div gt lt div gt lt div class pb border b border slate dark border slate gt lt a class w full inline flex justify center whitespace nowrap rounded lg bg indigo px py text sm font medium text white shadow sm shadow indigo hover bg indigo focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration group href gt Get Started lt span class tracking normal text indigo group hover translate x transition transform duration ease in out ml gt amp gt lt span gt lt a gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Account Access lt span gt lt span gt lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Custom Domains lt span gt lt span gt lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Receipts Forward lt span gt lt span gt lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Supplier Management lt span gt lt span gt lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Generate Public URLs lt span gt lt span gt lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt API Integrations lt span gt lt span gt lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Extra Add ons lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Enterprise Add ons lt span gt lt span gt lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt sr only gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Custom Connection lt span gt lt span gt lt div gt lt div gt lt section gt lt End Perform table gt lt Enterprise table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt div class relative bg white dark bg slate px flex flex col justify end gt lt div class grow mb gt lt div class font semibold text slate dark text slate mb gt Enterprise lt div gt lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt lt div class text sm text slate gt Unlimited placeholder texts lt div gt lt div gt lt div class pb border b border slate dark border slate gt lt a class w full inline flex justify center whitespace nowrap rounded lg bg indigo px py text sm font medium text white shadow sm shadow indigo hover bg indigo focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration group href gt Get Started lt span class tracking normal text indigo group hover translate x transition transform duration ease in out ml gt amp gt lt span gt lt a gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Account Access lt span gt lt span gt lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Custom Domains lt span gt lt span gt lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Receipts Forward lt span gt lt span gt lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Supplier Management lt span gt lt span gt lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Generate Public URLs lt span gt lt span gt lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt API Integrations lt span gt lt span gt lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Extra Add ons lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Enterprise Add ons lt span gt lt span gt lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt sr only gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Custom Connection lt span gt lt span gt lt div gt lt div gt lt section gt lt End Enterprise table gt lt div gt As you can see the second pricing table also has a green badge indicating the most popular plan Additionally we ve added vertical padding to the first and last cell of each plan using the Tailwind CSS arbitrary variants amp gt div first child pt amp gt div last child pb Using the same technique we ve also rounded the corners for each table amp gt div first child rounded t xl amp gt div last child rounded b xl Handling the pricing toggleAlthough the feature table layout has been completed an important functionality is still missing the pricing toggle To implement it we ll use Alpine js a lightweight and declarative JavaScript library that allows us to add interactivity to our HTML markup in just steps First we ll add the x data directive to our container element where we ll define the isAnnual property lt div class max w sm mx auto md max w none grid md grid cols md mx text sm x data isAnnual true gt Next up we ll work our magic with the x model directive on the input element lt input type checkbox id toggle class peer sr only x model isAnnual gt Doing this whenever the input state changes the isAnnual property will be updated accordingly And now we ll use the x text directive to display the correct price based on the toggle state Let s break it down lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate x text isAnnual gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt In simple terms if isAnnual is true the price will be otherwise it will be Here s the complete code lt div class max w sm mx auto md max w none grid md grid cols md mx text sm x data isAnnual true gt lt Column with labels gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt Pricing toggle gt lt div class relative bg white dark bg slate px flex flex col justify end gt lt div class pb md border b border slate dark border slate gt lt Toggle switch gt lt div class max md text center gt lt div class inline flex items center whitespace nowrap gt lt div class text sm text slate mr md max lg sr only gt Monthly lt div gt lt div class relative gt lt input type checkbox id toggle class peer sr only x model isAnnual gt lt label for toggle class relative flex h w cursor pointer items center rounded full bg slate px outline slate transition colors before h before w before rounded full before bg white before shadow sm before transition transform before duration peer checked bg indigo peer checked before translate x full peer focus visible outline peer focus visible outline offset peer focus visible outline gray peer checked peer focus visible outline indigo gt lt span class sr only gt Pay Yearly lt span gt lt label gt lt div gt lt div class text sm text slate ml gt Yearly lt span class text emerald gt lt span gt lt div gt lt div gt lt div gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Account Access lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Custom Domains lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Receipts Forward lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Supplier Management lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Generate Public URLs lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt API Integrations lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Extra Add ons lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Admin Roles lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Admin Roles lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Enterprise Add ons lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate font medium mt gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end max md hidden md order aria hidden true gt lt div class py text slate dark text slate border b border slate dark border slate gt Custom Connection lt div gt lt div gt lt section gt lt End Column with labels gt lt Essential table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt div class relative bg white dark bg slate px lg px flex flex col justify end gt lt div class grow mb gt lt div class font semibold text slate dark text slate mb gt Essential lt div gt lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate x text isAnnual gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt lt div class text sm text slate gt Unlimited placeholder texts lt div gt lt div gt lt div class pb border b border slate dark border slate gt lt a class w full inline flex justify center whitespace nowrap rounded lg bg indigo px py text sm font medium text white shadow sm shadow indigo hover bg indigo focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration group href gt Get Started lt span class tracking normal text indigo group hover translate x transition transform duration ease in out ml gt amp gt lt span gt lt a gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Account Access lt span gt lt span gt lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Custom Domains lt span gt lt span gt lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Receipts Forward lt span gt lt span gt lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Supplier Management lt span gt lt span gt lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Generate Public URLs lt span gt lt span gt lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt API Integrations lt span gt lt span gt lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Extra Add ons lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Enterprise Add ons lt span gt lt span gt lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt sr only gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Custom Connection lt span gt lt span gt lt div gt lt div gt lt section gt lt End Essential table gt lt Perform table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl dark gt lt div class relative bg white dark bg slate px lg px flex flex col justify end gt lt div class absolute top right mr mt gt lt div class inline flex items center text xs font semibold py px bg emerald text white rounded full shadow sm shadow slate gt Most Popular lt div gt lt div gt lt div class grow mb gt lt div class font semibold text slate dark text slate mb gt Perform lt div gt lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate x text isAnnual gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt lt div class text sm text slate gt Unlimited placeholder texts lt div gt lt div gt lt div class pb border b border slate dark border slate gt lt a class w full inline flex justify center whitespace nowrap rounded lg bg indigo px py text sm font medium text white shadow sm shadow indigo hover bg indigo focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration group href gt Get Started lt span class tracking normal text indigo group hover translate x transition transform duration ease in out ml gt amp gt lt span gt lt a gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Account Access lt span gt lt span gt lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Custom Domains lt span gt lt span gt lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Receipts Forward lt span gt lt span gt lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Supplier Management lt span gt lt span gt lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px lg px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Generate Public URLs lt span gt lt span gt lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt API Integrations lt span gt lt span gt lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Extra Add ons lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Enterprise Add ons lt span gt lt span gt lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt sr only gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center border b border slate dark border slate py text slate max md sr only gt lt span gt lt span class md sr only gt Custom Connection lt span gt lt span gt lt div gt lt div gt lt section gt lt End Perform table gt lt Enterprise table gt lt section class md contents amp gt div first child pt amp gt div first child rounded t xl amp gt div last child pb amp gt div last child rounded b xl gt lt div class relative bg white dark bg slate px flex flex col justify end gt lt div class grow mb gt lt div class font semibold text slate dark text slate mb gt Enterprise lt div gt lt div class mb gt lt span class text xl font medium text slate dark text slate gt lt span gt lt span class text xl font bold text slate dark text slate x text isAnnual gt lt span gt lt span class text slate font medium gt mo lt span gt lt div gt lt div class text sm text slate gt Unlimited placeholder texts lt div gt lt div gt lt div class pb border b border slate dark border slate gt lt a class w full inline flex justify center whitespace nowrap rounded lg bg indigo px py text sm font medium text white shadow sm shadow indigo hover bg indigo focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration group href gt Get Started lt span class tracking normal text indigo group hover translate x transition transform duration ease in out ml gt amp gt lt span gt lt a gt lt div gt lt div gt lt Platform gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Platform lt div gt lt div gt lt Account Access gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Account Access lt span gt lt span gt lt div gt lt div gt lt Custom Domains gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Custom Domains lt span gt lt span gt lt div gt lt div gt lt Receipts Forward gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Receipts Forward lt span gt lt span gt lt div gt lt div gt lt Supplier Management gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt Unlimited lt span class md sr only gt Supplier Management lt span gt lt span gt lt div gt lt div gt lt Features gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt md sr only gt Features lt div gt lt div gt lt Generate Public URLs gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Generate Public URLs lt span gt lt span gt lt div gt lt div gt lt API Integrations gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt API Integrations lt span gt lt span gt lt div gt lt div gt lt Extra Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Extra Add ons lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Admin Roles gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Admin Roles lt span gt lt span gt lt div gt lt div gt lt Enterprise Add ons gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Enterprise Add ons lt span gt lt span gt lt div gt lt div gt lt Support gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class py text slate font medium mt sr only gt Support lt div gt lt div gt lt Custom Connection gt lt div class bg white dark bg slate px flex flex col justify end md order gt lt div class flex items center h full border b border slate dark border slate py text slate dark text slate gt lt svg class shrink fill emerald mr xmlns width height gt lt path d M A l a l A Z gt lt svg gt lt span gt lt span class md sr only gt Custom Connection lt span gt lt span gt lt div gt lt div gt lt section gt lt End Enterprise table gt lt div gt ConclusionsHow was it Perhaps less difficult than we had anticipated thanks to the steps we took together As always we hope that this guide was helpful and if you would like to look at how to create a pricing table with a monthly yearly toggle check out these tutorials below How to Create a Pricing Table with a Monthly Yearly Toggle in Tailwind CSS How to Create a Pricing Table with a Monthly Yearly Toggle in Tailwind CSS and Next js How to Create a Pricing Table with a Monthly Yearly Toggle in Tailwind CSS and Vue 2023-08-01 10:20:37
海外TECH DEV Community Building a frontend auth in WordPress https://dev.to/accreditly/building-a-frontend-auth-in-wordpress-4lpn Building a frontend auth in WordPressWordPress love it or hate it is here to stay It powers of the Internet and is used by corporations large and small bloggers agencies and everything in between As WordPress website s grow in functionality it often becomes necessary for users to log into the site One example of this may be when you offer pay walled content whereby a user must be logged in to read it There are plugins that can do this but that s a heavy dependency on a third party that can introduce security risks not to mention a risk of them disappearing this happens more often than you may think even for popular plugins So roll your own We ve created a series of tutorials on how to build your own frontend auth experience in WordPress This series of articles takes you through the following Building a frontend registration form in WordPressBuilding a frontend login form in WordPressBuilding a frontend forgotten password form in WordPressCheck it out and if you have any questions let us know in the comments 2023-08-01 10:06:02
海外TECH DEV Community Weekly Roundup (Jul 24): 🔥Hot Topics🔥 in #workplace, #sharepoint, and #powerplatform https://dev.to/jaloplo/weekly-roundup-jul-24-hot-topics-in-workplace-sharepoint-and-powerplatform-2mfi Weekly Roundup Jul Hot Topicsin workplace sharepoint and powerplatformHey fellow developers It s jaloplo here to give you the latest scoop on what s been happening in the workplace sharepoint and powerplatform communities workplaceHow digital agency Ireland will help you to make your brand on top by Dhruv MathurEssential Considerations in Allocating Copilot Licenses by Jaime LópezWhat are Self Managed Teams Top Benefits vs Disadvantages by anthonypelleThe Impact of Artificial Intelligence on Employee Learning and Development in the Digital Era by Pawan KumarTesting at the Core Shedding Light on Digital Transformation with Maaret by LambdaTest Team motivos para não empreender e continuar como CLT by Rayjay sharepointStep by Step Guide Migrating from Classic to Modern Site in SharePoint Online by CloudStakes Technology powerplatform Power Automate Documentation by GPT by david wyattHow to Web scrape with Power Automate Cloud by david wyattPower Automate All The HTTP Connectors And What They Do by david wyattPowerPlay Tic Tak Toe Precision Vs Language Context by Bala MadhusoodhananThat s all for this week s roundup Thanks for tuning in and remember to keep the discussions lively and informative in our tags If you have any suggestions for future topics feel free to drop them in the comments below See you next month August will be the time to relax and recharge batteries But don t worry next roundup will cover all articles published during August Vacation s farewell See you again after August Cherished memories stay safe and eagerly await our reunion 2023-08-01 10:04:08
Apple AppleInsider - Frontpage News Foxconn plans new $500 million investment in India https://appleinsider.com/articles/23/08/01/foxconn-plans-new-500-million-investment-in-india?utm_medium=rss Foxconn plans new million investment in IndiaApple s largest iPhone supplier Foxconn is intending to build two new plants in Karnataka southern India at a cost of half a billion dollars A Foxconn facilityFoxconn has been working with Apple to reduce its reliance on China by diversifying to India But it has also recently abandoned a billion co venture deal with an Indian company Read more 2023-08-01 10:17:07
ニュース BBC News - Home Hiccupping giant panda caught on camera https://www.bbc.co.uk/news/world-asia-china-66372950?at_medium=RSS&at_campaign=KARANGA province 2023-08-01 10:21:57
ニュース BBC News - Home BP profits drop after Russia-Ukraine war windfall fades https://www.bbc.co.uk/news/business-66369811?at_medium=RSS&at_campaign=KARANGA energy 2023-08-01 10:02:35
ニュース BBC News - Home Boris Johnson's swimming pool plans threatened by newts https://www.bbc.co.uk/news/uk-politics-66370646?at_medium=RSS&at_campaign=KARANGA oxfordshire 2023-08-01 10:50:33
ニュース BBC News - Home Etsy sellers call for strike after money held https://www.bbc.co.uk/news/business-66362229?at_medium=RSS&at_campaign=KARANGA reserve 2023-08-01 10:47:02
ニュース BBC News - Home NI Pride preacher says words 'taken out of context' https://www.bbc.co.uk/news/uk-northern-ireland-66363796?at_medium=RSS&at_campaign=KARANGA abusers 2023-08-01 10:21:31
ニュース Newsweek <動画>「勇気ある行動」──ホワイトハウス報道官のスピーチを遮って政権を批判したのに、活動家が褒められた理由 https://www.newsweekjapan.jp/stories/world/2023/08/post-102327.php ホワイトハウス「大統領は若者のために闘っている」ジャンピエールはジョシの発言を受けて、堂々と声を上げた彼女の勇気を称え、気候変動問題をめぐるバイデンの取り組みを振り返った上で、さらなる取り組みが必要だと述べた。 2023-08-01 19:33:58
IT 週刊アスキー PC『ガンダムトライヴ』で新イベント「総力戦 ~灼熱!第二次ヤキン・ドゥーエ攻防戦~」が開催! https://weekly.ascii.jp/elem/000/004/147/4147904/ 開催期間 2023-08-01 19:40:00
IT 週刊アスキー 新たなラインアップを追加して「CAPCOM SUMMER SALE」の後半戦がスタート! https://weekly.ascii.jp/elem/000/004/147/4147885/ capcomsummersale 2023-08-01 19:10:00
IT 週刊アスキー グーグル、Androidに「AirTag」ストーキング防止機能 https://weekly.ascii.jp/elem/000/004/147/4147607/ 利用可能 2023-08-01 19:05:00
IT 週刊アスキー 立ったまま寝られる仮眠ボックスが商品化 短時間の休息で効率アップ https://weekly.ascii.jp/elem/000/004/147/4147881/ giraffenap 2023-08-01 19:30:00
IT 週刊アスキー ヤフー、Yahoo!ニュースの新サービス「Yahoo!ニュース エキスパート」提供開始 https://weekly.ascii.jp/elem/000/004/147/4147886/ japan 2023-08-01 19:30:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)