Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="bg-gray-100 h-screen w-screen flex justify-center">
  <div class="mr-8">
    
  <h1 class="font-medium max-w-xl mx-auto pt-10 pb-4">Smooth Accordion</h1>
<div class="bg-white max-w-xl mx-auto border border-gray-200" x-data="{selected:1}">
		<ul class="shadow-box">
						
		<li class="relative border-b border-gray-200">

			<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 1 ? selected = 1 : selected = null">
				<div class="flex items-center justify-between">
					<span>
						Should I use reCAPTCHA v2 or v3?					</span>
					<span class="ico-plus"></span>
				</div>
							</button>

			<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container1" x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''">
				<div class="p-6">
					<p>reCAPTCHA v2 is not going away! We will continue to fully support and improve security and usability for v2.</p>
<p>reCAPTCHA v3 is intended for power users, site owners that want more data about their traffic, and for use cases in which it is not appropriate to show a challenge to the user.</p>
<p>For example, a registration page might still use reCAPTCHA v2 for a higher-friction challenge, whereas more common actions like sign-in, searches, comments, or voting might use reCAPTCHA v3. To see more details, see the reCAPTCHA v3 developer guide.</p>
				</div>
			</div>

		</li>

	
		<li class="relative border-b border-gray-200">

			<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 2 ? selected = 2 : selected = null">
				<div class="flex items-center justify-between">
					<span>
						I'd like to run automated tests with reCAPTCHA. What should I do?					</span>
					<span class="ico-plus"></span>
				</div>
							</button>

			<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container2" x-bind:style="selected == 2 ? 'max-height: ' + $refs.container2.scrollHeight + 'px' : ''">
				<div class="p-6">
					<p>For reCAPTCHA v3, create a separate key for testing environments. Scores may not be accurate as reCAPTCHA v3 relies on seeing real traffic.</p>
<p>For reCAPTCHA v2, use the following test keys. You will always get No CAPTCHA and all verification requests will pass.</p>
				</div>
			</div>

		</li>

	
		<li class="relative border-b border-gray-200">

			<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 3 ? selected = 3 : selected = null">
				<div class="flex items-center justify-between">
					<span>
						Can I run reCAPTCHA v2 and v3 on the same page?					</span>
					<span class="ico-plus"></span>
				</div>
							</button>

			<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container3" x-bind:style="selected == 3 ? 'max-height: ' + $refs.container3.scrollHeight + 'px' : ''">
				<div class="p-6">
					<p>To do this, load the v3 site key as documented, and then explicitly render v2 using grecaptcha.render.</p>
<p>You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow. Please include the following text:</p>
<p>Yes, please use "www.recaptcha.net" in your code in circumstances when "www.google.com" is not accessible.</p>
<ul>
<li>First, replace &lt;script src="https://www.google.com/recaptcha/api.js" async defer&gt;&lt;/script&gt; with &lt;script src="https://www.recaptcha.net/recaptcha/api.js" async defer&gt;&lt;/script&gt;</li>
<li>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</li>
</ul>
<p>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</p>
				</div>
			</div>

		</li>

			</ul>
	</div>
  </div>
  <div class="ml-8">
    
  <h1 class="font-medium max-w-xl mx-auto pt-10 pb-4">Smooth Collapse</h1>
<div class="bg-white max-w-xl mx-auto border border-gray-200">
		<ul class="shadow-box">
						
		<li class="relative border-b border-gray-200" x-data="{selected:null}">

			<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 1 ? selected = 1 : selected = null">
				<div class="flex items-center justify-between">
					<span>
						Should I use reCAPTCHA v2 or v3?					</span>
					<span class="ico-plus"></span>
				</div>
							</button>

			<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container1" x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''">
				<div class="p-6">
					<p>reCAPTCHA v2 is not going away! We will continue to fully support and improve security and usability for v2.</p>
<p>reCAPTCHA v3 is intended for power users, site owners that want more data about their traffic, and for use cases in which it is not appropriate to show a challenge to the user.</p>
<p>For example, a registration page might still use reCAPTCHA v2 for a higher-friction challenge, whereas more common actions like sign-in, searches, comments, or voting might use reCAPTCHA v3. To see more details, see the reCAPTCHA v3 developer guide.</p>
				</div>
			</div>

		</li>

	
		<li class="relative border-b border-gray-200" x-data="{selected:null}">

			<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 2 ? selected = 2 : selected = null">
				<div class="flex items-center justify-between">
					<span>
						I'd like to run automated tests with reCAPTCHA. What should I do?					</span>
					<span class="ico-plus"></span>
				</div>
							</button>

			<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container2" x-bind:style="selected == 2 ? 'max-height: ' + $refs.container2.scrollHeight + 'px' : ''">
				<div class="p-6">
					<p>For reCAPTCHA v3, create a separate key for testing environments. Scores may not be accurate as reCAPTCHA v3 relies on seeing real traffic.</p>
<p>For reCAPTCHA v2, use the following test keys. You will always get No CAPTCHA and all verification requests will pass.</p>
				</div>
			</div>

		</li>

	
		<li class="relative border-b border-gray-200" x-data="{selected:null}">

			<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 3 ? selected = 3 : selected = null">
				<div class="flex items-center justify-between">
					<span>
						Can I run reCAPTCHA v2 and v3 on the same page?					</span>
					<span class="ico-plus"></span>
				</div>
							</button>

			<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container3" x-bind:style="selected == 3 ? 'max-height: ' + $refs.container3.scrollHeight + 'px' : ''">
				<div class="p-6">
					<p>To do this, load the v3 site key as documented, and then explicitly render v2 using grecaptcha.render.</p>
<p>You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow. Please include the following text:</p>
<p>Yes, please use "www.recaptcha.net" in your code in circumstances when "www.google.com" is not accessible.</p>
<ul>
<li>First, replace &lt;script src="https://www.google.com/recaptcha/api.js" async defer&gt;&lt;/script&gt; with &lt;script src="https://www.recaptcha.net/recaptcha/api.js" async defer&gt;&lt;/script&gt;</li>
<li>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</li>
</ul>
<p>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</p>
				</div>
			</div>

		</li>

			</ul>
	</div>
  </div>
  
  </div>
              
            
!

CSS

              
                .max-h-0 {
  max-height: 0;
}
              
            
!

JS

              
                
              
            
!
999px

Console