Skip to main content
Blog IT Information technology

Main navigation

  • Home
  • Contact us

User account menu

  • Log in
  • Register

March 2020

  1. Home
  2. Monthly Archive
  3. Monthly Archive

How to Disable Form Fields with CSS

You can disable form fields by using some CSS. To disable form fields, use the CSS pointer-events property set to “none”.

<!DOCTYPE html>
<html>
  <head>
    <title>How to Disable Form Fields with CSS</title>
    <style>
      input[name=yourName] {
        pointer-events: none;
      }
    </style>
  </head>
  <body>
    <input type="text" name="yourName" value="blog it">
  </body>
</html>

Blog IT Blog IT
4 years 12 months ago
Read More

How to create HTML <iframe> Tag

The <iframe> tag creates an inline frame for embedding third-party content (media, applets, etc.). Although the content of the frame and the web page are independent, they can interact through JavaScript.

<!DOCTYPE html>
<html>
  <head>
    <title>HTML <iframe> Tag</title>
  </head>
  <body>
    <iframe src="http://blog-it.tn/"></iframe>
  </body>
</html>

Blog IT Blog IT
5 years ago
Read More

Subscribe to the Newsletter

Blog Category

Web
Mobile
Security
Design

Tags keyword

html
css
php
Sass
html5
drupal
drupal 8
drupal 9
drupal 10
laravel
symfony
vue.js
vue
js
css3
jquery
javascript
image
table
iframe
link
mail
twig
drush
module
git
gitflow
web
drupal 7

Monthly archive

  • May 2018 (1)
  • May 2019 (1)
  • November 2019 (1)
  • December 2019 (1)
  • March 2020 (2)
  • May 2020 (3)
  • June 2020 (2)
  • July 2020 (3)
  • November 2020 (1)
  • December 2021 (3)
  • October 2022 (1)
  • November 2022 (7)
  • December 2022 (15)
  • February 2023 (1)
  • April 2023 (1)
  • May 2023 (2)
  • June 2023 (3)
  • July 2023 (4)
  • August 2023 (8)
  • September 2023 (3)
  • October 2023 (9)
  • November 2023 (5)
  • September 2024 (1)

Copyright © 2025 - Blog Information technology - Sitemap