• Home
  • Tools
    • Color Chart
  • Software
    • Windows tricks
      • Windows 11 Speed Up Tricks
      • Windows Command Prompt CMD
    • Android Phone
      • Android – Dangerous Settings to Turn Off
    • Projects
      • Copy Files
      • Php Autoscript
      • Web Tools
  • Payments
  • Notes
  • System Tips

Notes

ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software |

ABCDEFGHIJKLMNOPQRSTUVWXYZ
ON
PRT
OFF

<- Look Inside Data
Conditions:
Order:
1|2|3|4|5|6|7|8|
50 Language Operation Title
Keywords
Application
Code Languageid
Show Html
Show Iframe
Make Public
Viewed
Viewed Date
ACCESS 2022 Database Creating Indexes
index
Developer
What is an index?
You can use an index to help Access find and sort records faster. An index stores the location of records based on the field or fields that you choose to index. After Access obtains the location from the index, it can then retrieve the data by moving directly to the correct location. In this way, using an index can be considerably faster than scanning through all of the records to find the data.

Decide which fields to index
You can create indexes that are based on a single field or on multiple fields. You'll probably want to index fields that you search frequently, fields that you sort, and fields that you join to fields in other tables in multiple table queries. Indexes can speed up searches and queries, but they can slow down performance when you add or update data. When you enter data in a table that contains one or more indexed fields, Access must update the indexes each time a record is added or changed. Adding records by using an append query or by appending imported records is also likely to be slower if the destination table contains indexes.

Note: The primary key of a table is automatically indexed.

You cannot index a field whose data type is OLE Object, Calculated, or Attachment. For other fields, consider indexing a field if all of the following apply:

The field's data type is Short Text, Long Text, Number, Date/Time, AutoNumber, Currency, Yes/No or Hyperlink.

You anticipate searching for values stored in the field.

You anticipate sorting values in the field.

You anticipate storing many different values in the field. If many of the values in the field are the same, the index might not significantly speed up queries.

Multiple-field indexes
If you think that you'll often search or sort by two or more fields at a time, you can create an index for that combination of fields. For example, if you often set criteria for the Vendor and ProductName fields in the same query, it makes sense to create a multiple-field index on both fields.

When you sort a table by a multiple-field index, Access sorts first by the first field defined for the index. You set the order of the fields when you create a multiple-field index. If there are records with duplicate values in the first field, Access sorts next by the second field defined for the index, and so on.

You can include up to 10 fields in a multiple-field index.

Create an index
To create an index, you first decide whether you want to create a single-field index or a multiple-field index. You create an index on a single field by setting the Indexed property. The following table lists the possible settings for the Indexed property.

Indexed property setting

Meaning

No

Don't create an index on this field (or delete the existing index)

Yes (Duplicates OK)

Create an index on this field

Yes (No Duplicates)

Create a unique index on this field

If you create a unique index, Access doesn't allow you to enter a new value in the field if that value already exists in the same field in another record. Access automatically creates a unique index for primary keys, but you might also want to prohibit duplicate values in other fields. For example, you can create a unique index on a field that stores serial numbers so that no two products have the same serial number.

Create a single-field index

In the Navigation Pane, right-click the name of the table that you want to create the index in, and then click Design View on the shortcut menu.

Click the Field Name for the field that you want to index.

Under Field Properties, click the General tab.

In the Indexed property, click Yes (Duplicates OK) if you want to allow duplicates, or Yes (No Duplicates) to create a unique index.

To save your changes, click Save on the Quick Access Toolbar, or press CTRL+S.

Create a multiple-field index

To create a multiple-field index for a table, you include a row for each field in the index and include the index name only in the first row. Access treats all rows as part of the same index until it comes to a row containing another index name. To insert a row, right-click the location where you want to insert a row, and then click Insert Rows on the shortcut menu.

In the Navigation Pane, right-click the name of the table that you want to create the index in, and then click Design View on the shortcut menu.

On the Design tab, in the Show/Hide group, click Indexes.

The Indexes window appears. Resize the window so that some blank rows appear and the index properties are shown.

In the Index Name column, in the first blank row, type a name for the index. You can name the index after one of the index fields, or use another name.

In the Field Name column, click the arrow and then click the first field that you want to use for the index.

In the next row, leave the Index Name column blank, and then, in the Field Name column, click the second field for the index. Repeat this step until you select all the fields that you want to include in the index.

To change the sort order of the field's values, in the Sort Order column of the Indexes window, click Ascending or Descending. The default sort order is Ascending.

In the Indexes window, under Index Properties, set the index properties for the row in the Index Name column that contains the name of the index. Set the properties according to the following table.

Label

Value

Primary

If Yes, the index is the primary key.

Unique

If Yes, every value in the index must be unique.

Ignore Nulls

If Yes, records with a Null value in the indexed fields are excluded from the index.

To save your changes, click Save on the Quick Access Toolbar or press CTRL + S.

Close the Indexes window.

Delete an index
If you find that an index becomes unnecessary or is having too great an impact on performance, you can delete it. When you delete an index, you remove only the index and not the field or fields on which it is built.

In the Navigation Pane, right-click the name of the table that you want to delete the index in, and then click Design View on the shortcut menu.

On the Design tab, in the Show/Hide group, click Indexes.

The Indexes window appears. Resize the window so that some blank rows appear and the index properties are shown.

In the Indexes window, select the row or rows that contain the index that you want to delete, and then press DELETE.

To save your changes, click Save on the Quick Access Toolbar or press CTRL + S..

Close the Indexes window.

View and edit indexes
You might want to see the indexes for a table to weigh their impact on performance, or to ensure that particular fields are indexed.

In the Navigation Pane, right-click the name of the table that you want to edit the index in, and then click Design View on the shortcut menu.

On the Design tab, in the Show/Hide group, click Indexes.

The Indexes window appears. Resize the window so that some blank rows appear and the index properties are shown.

View or edit the indexes and index properties to suit your needs.

To save your changes, click Save on the Quick Access Toolbar or press CTRL + S..

Close the Indexes window.
ACCESS 2022



5
01/09/2026
ACCESS 2022 Form Enable Users To Find A Record By Selecting A Value From A List
combo box find record
https://support.microsoft.com/en-us/office/enable-users-to-find-a-record-by-selecting-a-value-from-a-list-e3ed7711-433a-4931-9cab-b0f71a90c329

When you design a form in Access, you can create a list box or a combo box that can be used to find a record when a value is selected from the list. This makes it easier for users to quickly find existing records without having to type a value into the Find dialog box.

Notes:

For this procedure to work, the form must be bound to a table or a saved query. Step 5 of the procedure contains more information about what to do if this is not the case.

This procedure might create code that will run only when the database is granted trusted status. For more information, see the article Decide whether to trust a database.

Create the list box or combo box
Right-click the form in the Navigation Pane, and then click Design View.

On the Design tab, in the Controls group, ensure that Use Control Wizards Button image is selected. this is buried below the control group. Click on the lowest arrow down and you will find it.

In the Controls group, click List Box or Combo Box.

On the form, click where you want to put the list box or combo box.

On the first page of the wizard, click Find a record on my form based on the value I selected in my combo box/list box, and then click Next.

The Find a record... option is not available.

If the option Find a record on my form based on the value I selected in my combo box/list box is not displayed, it is likely because the form is not bound to a table or a saved query. The form must be bound to an object that is available in the Navigation Pane under Tables or Queries.

Use the following procedure to check whether a form is bound to a table or saved query:

Click Cancel to close the wizard.

Right-click the list box or combo box that you created earlier, and then click Delete.

If the Property Sheet task pane is not displayed, press F4 to display it.

Select Form from the list at the top of the property sheet.

On the Data tab of the property sheet, look at the Record Source property box. This box must contain the name of a table or saved query before you can use the procedure described in this article. If the box is blank, you can select an existing table or query as the record source, or you can create a new query to serve as the record source. If the box contains a SELECT statement, you have the additional option of converting that statement to a saved query. Once you have completed one of these tasks, the next time you run the Combo Box/List Box wizard, it will display the Find a record... option.

Follow one of these procedures based on what you want to do:

Select an existing table or query as the record source or enter something like SELECT [mulitreplace].[replaceid], [mulitreplace].[title] FROM [mulitreplace] ORDER BY [mulitreplace].[title];

If you know that there is an existing table or query in your database that contains the records you want to find, use this procedure to bind the form to that object.

Note: If the Record Source property box contains a SELECT statement, following this procedure will delete that statement permanently. You might want to copy the statement to a text file or other word processing program in case you want to restore it.

Click in the Record Source property box, and then click the drop-down arrow that appears.

Select one of the available tables or queries. If a suitable table or query is not available, you must create one before you can continue. For more information, see the articles Create a table and add fields or Create a simple select query.

Save the form, and then repeat the procedure at the beginning of this article. The wizard should now display the Find a record on my form based on the value I selected in my combo box/list box option.

Create a new saved query, or convert a SELECT statement to a saved query

If the data you want to find is contained in more than one table, you will need to bind the form to a query that selects the data from those tables.

In the Record Source property box, click the Build button Builder button.

Access opens the Query Builder.

You can begin creating a new query. For more information, see the article Create a simple select query. When you are finished building the query, proceed with step 2.

If the Record Source property box originally contained a SELECT statement, that query is displayed in the Query Builder. Proceed with step 2 to convert it to a saved query.

On the Design tab, in the Close group, click Save As.

In the Save As dialog box, type a name for the query in the Save 'Queryn' to: box.

Make sure that Query is selected in the As box, and then click OK.

On the Design tab, in the Close group, click Close.

Click Yes to save the changes made to the query and update the property.

Access displays the form in Design view, and changes the Record Source property so that the new saved query name is displayed.

Click Save on the Quick Access Toolbar.

Repeat the procedure at the beginning of this article. The wizard should now display the Find a record on my form based on the value I selected in my combo box/list box option.

Follow the directions in the wizard. On the last page of the wizard, click Finish to display the list box or combo box in Design view.

Top of Page
ACCESS 2022



13
08/02/2025
ACCESS 2022 Function Printing Duplicate Records From A Table To A Query
darnell labels duplicate vb script
Darnel Lables
ACCESS 2022



2
08/02/2025
Browsers Customizing Change The Default Download Location In Firefox
download firefox
Firefox
Browsers



0
02/08/2026
Browsers Customizing 10 Handy Firefox About:config Hacks
firefox configuration fire fox
Takeaway: If you really want to fine-tune your Firefox functionality, you have to roll up your sleeves and tinker with the about:config page. Jack Wallen shares some simple hacks to make Firefox work the way you want.

Unless you�re a Firefox power user, you may not be familiar with the about:config page. The Firefox about:config page is not so much a page as it is a somewhat hidden configuration section. It�s hidden because it�s fairly powerful and not nearly as simple to use as the standard Preferences window. In the about:config page, you have to know what you are doing or you can mess things up a bit. In fact, when you attempt to go to that page for the first time, you have to accept an agreement (which is really just a warning) before you can continue.

How this page works is simple. You reach the page by entering about:config in the address bar. There are entries (one per line) that handle various types of configurations. Each entry has a searchable keyword. The entries can be of Boolean, integer, or string value. Entries contain Name, Status, Type, and Value. Typically, you will be modifying only the Value, by double-clicking on it and making the change. With all of that in mind, let�s take a look at 10 of the best ways you can �hack� the about:config page.

Tip
If Firefox is fubar�d because you accidentally misconfigured about:config, you can fix it in one of two ways:

Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file.
If you can�t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. Note: This will restore all user preferences to their default values.

1: Speed up Firefox

This hack requires a few steps. Search for pipelining in the filter and you should see:

network.http.pipelining: Change this to true.

network.http.proxy.pipelining: Change this to true.

network.http.pipelining.maxrequests: Change this to 8.

Now search for max-connections and you should see:

network.http.max-connections: Change this to 96.

network.http.max-connections-per-server: Change this to 32.

2: Disable antivirus scanning
This is only for the Windows version. If you�re downloading large files, this scanning can seriously slow things down. And since you will most likely scan the downloaded file anyway, you�ll probably want to disable this. Of course, if you are uber paranoid (not a bad trait for computing), you might want to leave this entry alone.

To disable antivirus scanning, search for scanWhenDone and you should see:

browser.download.manager.scanWhenDone: Change this to false.

3: Open Javascript popups as tabs
If a popup window lacks the features of a browser window, Firefox will handle it like a popup. If you would prefer to open all windows, including popups, as new tabs, you need to tell Firefox in about:config. Search for newwindow and you will see three entries. Of those three entries, you will want to modify:

browser.link.open_newwindow.restriction: Change this to 0.

4: Spell checking in all fields
By default, Firefox checks spelling only in multiple-line text boxes. You can set it to check spelling in all text boxes. Search for spellcheckdefault and you should see:

layout.spellcheckDefault: Change this to 2.

5: Open search bar results in new tab
When you use the search bar, the results display in the current tab. This can be a nuisance because you will navigate out of the page you are currently in. To make sure Firefox always opens search results in a new tab, search for openintab and you should see:

browser.search.openintab: Change this to true.

6: Auto export bookmarks
In Firefox 3, bookmarks are automatically saved and exported for you. The only problem is that by default, they�re saved as places.sqlite instead of the more convenient bookmarks.html. To change this setting so that they can be easily re-imported, search for autoExportHTML and you should see:

browser.bookmarks.autoExportHTML: Change this to true.

7: Disable extension install delay
One of the few gripes I have with Firefox is the silly countdown you must endure every time you want to install an extension. Fortunately, this can be disabled. Search for enable_delay and you should see:

security.dialog_enable_delay: Change this to 0.

8: View source code in an external editor
When you need to view the source of a page, it opens up in browser popup. Most developers would probably like to have that opened in their favorite editor instead of having to cut and paset. To do this, there are two entries to modify. Search for view_source.editor and you will see:

view_source.editor.external: Change this to true.

view_source.editor.path: Change this to the explicit path to your editor of choice.

9: Get more add-on search results
When you do a search in the Add-on window, you�ll see just five results. You might find it more efficient to increase this number. Search for getAddons and you should see:

extension.getAddons.maxResults: Change this to 10 (or higher, if you want to see even more).

10: Redefine the Backspace button
Did you know you can configure Firefox to use the backspace button to either go back a page or go up a page? This keeps power users from having to go back and forth from the keyboard to the mouse. Search for backspace and you will see:

browser.backspace_action: Change this to 0 for previous page and 1 for page up.
Browsers



1867
09/09/2023
Browsers Customizing Disable The "resend Confirmation" In Firefox
firefox config
Annoying Resends
You can disable the "resend confirmation" in Firefox by going to about:config, searching for dom.confirm_repost.testing.always_accept, and setting it to true, but this isn't officially supported and might have risks; a better way to avoid it is to use middle-click or Ctrl+click for new tabs instead of the back button, or use the POST/Redirect/GET pattern in website development.
Using about:config (Use with caution)

Type about:config in the Firefox address bar and press Enter.
Accept the risk if prompted.
Search for dom.confirm_repost.testing.always_accept.
Double-click the preference to change its value to true.

Better User Practices (Recommended)

Open in New Tab: Instead of clicking the back button after submitting a form (like a search or login), use your middle mouse button (scroll wheel) or Ctrl + Left-Click on links to open them in a new tab, then close that tab.
Avoid Back Button: Don't use the back button after posting data; it forces the browser to resend the form data.

For Developers (To prevent it on your site)

Implement the POST/Redirect/GET (PRG) pattern: After a form submission (POST), redirect the user to a new page using a GET request. This way, refreshing the page only reloads the GET page, not resubmits the form.
Browsers



0
12/20/2025
Browsers Form Reduce Long Url To Short Url
short url
All
Have you ever tried to share a link to a website in a text, tweet, or message and wound up with a long ugly URL? Fortunately, there are many services that make it easy to shorten any URL (including your own web address) into an abbreviated URL that you can place into email, messages, websites, and social media posts. We'll show you how to use the best free options for shortening a URL on your computer, Android, iPhone, and iPad.

URL shortening services like Bitly, TinyCC, and TinyURL can instantly shorten any URL to something that's more memorable and easy to share.
Most URL shorteners allow you to create an account so you can update your destination links and track clicks.

Several URL shorteners have paid options that allow you to link your domain name to create custom branded links.
Browsers



1468
09/09/2023
Browsers Keyboard Keyboard Shortcuts Edge
keyboard shortcuts
Edge Version 108.0.1462.54
WindowsMac - Press this key - - To do this - -
Ctrl + Shift + B - - Show or hide the favorites bar - -
Alt + Shift + B - - Set focus on the first item in the favorites bar - -
Ctrl + D - - Save the current tab as a favorite - -
Ctrl + Shift + D - - Save all open tabs as favorites in a new folder - -
Ctrl + Shift + E - - Open search in sidebar - -
Alt + D - - Select the URL in the address bar to edit - -
Ctrl + E - - Open a search query in the address bar - -
Alt + E - - Open the Settings and more menu - -
Ctrl + F - - Open find on page - -
Alt + F - - Open the Settings and more menu - -
Ctrl + G - - Jump to the next result for find on page - -
Ctrl + Shift + G - - Jump to the previous result for find on page - -
Ctrl + H - - Open History - -
Ctrl + Shift + I - - Open Developer Tools - -
Alt + Shift + I - - Open the Send feedback dialog - -
Ctrl + J - - Open Downloads - -
Ctrl + K - - Open a search query in the address bar - -
Ctrl + Shift + K - - Duplicate the current tab - -
Ctrl + L - - Select the URL in the address bar to edit - -
Ctrl + Shift + L - - Paste and search or Paste and go (if it's a URL) - -
Ctrl + M - - Mute the current tab (toggle) - -
Ctrl + Shift + M - - Sign in as a different user or browse as a Guest - -
Ctrl + N - - Open a new window - -
Ctrl + Shift + N - - Open a new InPrivate window - -
Ctrl + O - - Open a file from your computer in Edge - -
Ctrl + Shift + O - - Open Favorites - -
Ctrl + P - - Print the current page - -
Ctrl + Shift + P - - Print using the system dialog - -
Ctrl + R - - Reload the current page - -
Ctrl + Shift + R - - Reload the current page, ignoring cached content - -
Ctrl + S - - Save the current page - -
Ctrl + T - - Open a new tab and switch to it - -
Ctrl + Shift + T - - Reopen the last closed tab, and switch to it - -
Alt + Shift + T - - Set focus on the first item in the app bar toolbar - -
Ctrl + U - - View source - -
Ctrl + Shift + U - - Start or stop Read Aloud - -
Ctrl + Shift + V - - Paste without formatting - -
Ctrl + W - - Close the current tab - -
Ctrl + Shift + W - - Close the current window - -
Ctrl + Shift + Y - - Open Collections - -
Ctrl + 0 (zero) - - Reset page zoom level - -
Ctrl + 1, 2, ... 8 - - Switch to a specific tab - -
Ctrl + 9 - - Switch to the last tab - -
Ctrl + Enter - - Add www. to the beginning and .com to the end of text typed in the address bar - -
Ctrl + Tab - - Switch to the next tab - -
Ctrl + Shift + Tab - - Switch to the previous tab - -
Ctrl + Plus (+) - - Zoom in - -
Ctrl + Minus (-) - - Zoom out - -
Ctrl + (in a PDF) - - Toggle PDF between fit to page / fit to width - -
Ctrl + [ (in a PDF) - - Rotate PDF counter-clockwise 90* - -
Ctrl + ] (in a PDF) - - Rotate PDF clockwise 90* - -
Ctrl + Shift + Delete - - Open clear browsing data options - -
Alt - - Set focus on the Settings and more button - -
Alt + Left arrow - - Go back - -
Alt + Right arrow - - Go forward - -
Alt + Home - - Open your home page in the current tab - -
Alt + F4 - - Close the current window
- - F1 - - Open Help
- - F3
- - Find in the current tab
- - F4 - - Select the URL in the address bar - -
Ctrl + F4 - - Close the current tab
- - F5 - - Reload the current tab - - Shift + F5 - - Reload the current tab, ignoring cached content
- - F6 - - Move focus to next pane - - Shift + F6 - - Move focus to previous pane - -
Ctrl + F6 - - Move focus to the web content pane
- - F7 - - Turn caret browsing on or off
- - F9 - - Enter or exit Immersive Reader
- - F10 - - Set focus on the Settings and more button
- - F10 + Enter - - Open Setting and more menu - - Shift + F10 - - Open context menu
- - F11 - - Enter full screen (toggle)
- - F12 - - Open Developer Tools - -
Esc - - Stop loading page; close dialog or pop-up - -
Spacebar - - Scroll down webpage, one screen at a time - - Shift + Spacebar - - Scroll up webpage, one screen at a time - - PgDn - - Scroll down webpage, one screen at a time - -
Ctrl + PgDn - - Switch to the next tab - - PgUp - - Scroll up webpage, one screen at a time - -
Ctrl + PgUp - - Switch to the previous tab - -
Home - - Go to the top of the page, Move keyboard focus to first item of pane - -
End - - Go to the bottom of the page, Move keyboard focus to last item of pane - -
Tab - - Go to next tab stop - - Shift + Tab - - Go to previous tab stop
Browsers



1484
09/09/2023
Browsers Security Remove Free.instantgreenapp.com From Edge
instantgreenapp.com popups
Edge
1. In Edge, go to Settings and more

2. Select Settings > Cookies and site permissions.

3. Under All permissions, select Pop-ups and redirects.

4. Turn ON the Block toggle.




Remove Free.instantgreenapp.com from Edge
Open Microsoft Edge.
Click on the three dots in the top right corner to expand the Edge menu.
Scroll down to Settings.
In the left menu, click on Site permissions.
Click on Notifications.
Click on the three dots on the right of the Free.instantgreenapp.com domain and click Remove.
? See the next step: Malwarebytes.
Browsers



0
01/06/2024
Browsers Setup To Clear Your Browsing Data In Microsoft Edge:
clear data style history
Edge Version 108.0.1462.54
Select Settings found by clicking on 3 dots in right hand corner and more > Settings > Privacy, search, and services.

Under Clear browsing data > Clear browsing data now, select Choose what to clear.
Under Time range, choose a time range from the drop-down menu.
Choose the types of browsing data you want to clear (see the table below for descriptions). ...

Select Clear now.

Browsing data you can delete in Microsoft Edge - Types of info - - What will be deleted - - Where it's stored

Browsing history - - The URLs of sites you've visited, and the dates and times of each visit. - - On your device (or, if sync is turned on, across your synced devices) - -

Download history - - The list of files you've downloaded from the web. This only deletes the list, not the actual files that you've downloaded. - - On your device - -

Cookies and other site data - - Information and data that websites store on your device to remember your preferences, such as sign-in info, your location, or media licenses. - - On your device - -

Cached images and files - - Copies of pages, images, and other media content stored on your device. The browser uses these copies to load content faster the next time you visit those sites. - - On your device - -

Passwords - - Site passwords that you've saved. - - On your device (or, if sync is turned on, across your synced devices)

Autofill form data (includes forms and cards) - - Info that you've entered into forms, such as your email, credit card, or a shipping address. - - On your device (or, if sync is turned on, across your synced devices) - -

Site permissions - - Go to Settings and more > Settings > Cookies and site permissions to see a list for each website, including location, cookies, pop-ups, and media autoplay. - - On your device - -

All data from the previous version of Microsoft Edge - - All data including history, favorites, passwords, and more from the legacy version of Microsoft Edge. - - On your device (or, if sync is turned on, across your synced devices)
Browsers



4
09/09/2023
Css Archive Assembly.css Backup
assembly css floating header line height
Library

1st part runs everything. Rest formatting is in the xxxCustom.css and floatingheader.css


//* begin auto css 4.2020.801.1875 */
input, textarea, select,a {font-family:verdana;font-size:10pt;margin-top:3px;}
/* Checkbox element, when checked */
input[type="checkbox"] {
box-shadow: 0 0 0 1px hotpink;
}
table.reportActionTable {max-width:1200px;min-width:800px;}
td.viewnumber{text-align:right;}
.button_cell{min-width:125px;}
.tableInput {min-width:100px;}
table.formtablewidth {width:100%;max-width:600px;}
textarea.textareaDimension{ width:98%; min-height: 100px; }
textarea.descriptionPUR { height:300px; }
textarea.descriptionFIL { height:200px; }
textarea.NoteBox{ width:100%; max-width:600px; min-width:400px; min-height: 300px; }
hr.cell_split{color:red;}
img {border:0px;border-style:inset;border-color:black}
UL {margin-left:20px;margin-bottom:0in;margin-top:0in;font-size:10pt;}
LI {margin:1px 1px 1px 1px}
LI.large {margin:1px 1px 1px 1px;font-size:16pt}
body{margin-left:27px;margin-top:0px;font-size:10pt;font-family:Verdana}
p{font-family:verdana;font-size:12pt}
p.menu{font-family:verdana;font-size:12pt;margin-right:20px;margin-top:.5em}
table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt}
tr.alt{background-color:#FFEFD5;}
td{font-family:verdana;font-size:10pt;border:1px solid #000000;padding:3px;}
td.debt{color:red;}
div {font-size:10pt;zoom:1;}
div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; }
.navletters {margin:0 7px 0 7px; }
h1 {font-size:26pt; }
textarea.descriptionLED {height:250px; }
..ui-datepicker.ui-datepicker-multi {
min-width: 30% !important; /* Makes the multi-month datepicker responsive to its parent container */
}
.ui-datepicker {
min-width: 38em; /* Adjust the pixel value as needed .ui-datepicker table { width: 100%; } */
font-size: 10pt; /* Adjust font size to fit more months if necessary */
}
@media screen and (max-width: 1100px) {
body{ zoom:1;}
}
/* end auto css 4.2020.801.1875 */



Old archived stuff


.navletters{margin:0 5px 0 10px;}
.fertilizer {font-size:14pt;margin-left:75px;page-break-after: always;}
A:link {text-decoration:underline;color:#330033;font-size:8pt}
A:visited {text-decoration:none;color:#0033FF;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A.menu:visited {text-decoration:none;color:#666666;font-size:8pt}
A:hover.menu {color:#ffcc66;font-size:8pt}
A.menu:active {text-decoration:none;color:#666666;font-size:8pt}
A:link.calendar {text-decoration:underline;color:#330033;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}
.navletters{margin:0 5px 0 10px;}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
input[type="checkbox"] {
border: 2px solid #2c4358;
}
input.txwhere {min-width:300px;}
table.formtablewidth {width:100%;max-width:800px;}
table.reportActionTable {max-width:1200px;min-width:800px;}
textarea.textareaDimension{ width:100%;min-height: 200px; }
hr.cell_split{color:red;}

img {border:0px;border-style:inset;border-color:black}
UL {margin-left:20px;margin-bottom:0in;margin-top:0in;}
LI {margin:1px 1px 1px 1px}
LI.large {margin:1px 1px 1px 1px;font-size:16pt}
body{margin-left:25px;margin-top:0px;font-size:10pt;font-family:Verdana}
/* body {min-width:4150px;} */
p{font-family:verdana;font-size:10pt}
p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em}
table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt;}
tr.alt{background-color:#D1EED0;}
td{font-family:verdana;font-size:8pt;border:1px solid #000000;padding:3px;}
td.small{font-family:verdana;font-size:6pt}
td.menu{font-family:verdana;font-size:7pt}
p.title{font-family:verdana;font-size:12pt;font-weight:bold}
p.large{font-family:verdana;font-size:22pt}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
#menud table{border:none;border-color:#000000;width:150;border-collapse:collapse;background-color:#CCCCCC}
#menud td.menuon {background-color:#66FF00;color:#000000;border:1pt solid #000000;text-align:right}
#menud td.menuoff {background-color:#0033FF;color:#FFFFFF;border:1pt solid #000000;text-align:right}
#menud tr.space{height:15px}
#menud td.space{Border-top:0px;Border-bottom: 0px solid;Border-right:1pt solid #000000;Border-left:1pt solid #000000}
#menud tr{height:20px}
#menud p{font-family:Verdana;font-size:10pt;font-weight:bold;margin-left:5px;margin-right:5px}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
div.scroll{overflow:auto;text-align:left;max-width:450px;max-height:150px; }

#lightbox{ position: absolute; left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100% ; }

#imageData{ padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
#imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; outline: none;}

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
Css



8
01/22/2025
Css Customizing Fixing Content While Scrolling
div fixed content scroll top menu
Css



1406
09/09/2023
Css Customizing Assembly.css Instructions
assembly vb.net phpscript whs transaction zoom
Developer

customize top and bottom table:


input.txwhere {min-width:300px;} length of where textbox
table.formtablewidth {width:100%;max-width:800px;}
table.reportActionTable {max-width:1200px;min-width:800px;} width of bottom table
textarea.textareaDimension{ width:100%;min-height: 200px; }
hr.cell_split{color:red;} color of line in merged cells


.navletters{margin:0 5px 0 10px;}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
input[type="checkbox"] {
border: 2px solid #2c4358;
}
table.formtablewidth {width:100%;max-width:800px;}
textarea.textareaDimension{ width:100%;min-height: 200px; }
table.reportActionTable {max-width:1200px;min-width:800px;}

A:link {text-decoration:underline;color:#330033;font-size:8pt}
A:visited {text-decoration:none;color:#0033FF;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A.menu:visited {text-decoration:none;color:#666666;font-size:8pt}
A:hover.menu {color:#ffcc66;font-size:8pt}
A.menu:active {text-decoration:none;color:#666666;font-size:8pt}
A:link.calendar {text-decoration:underline;color:#330033;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A:visited.calendar {text-decoration:underline;color:#666666;font-size:8pt}
A:hover.calendar {color:#ffcc66;font-size:8pt}
A:active.calendar {text-decoration:underline;color:#666666;font-size:8pt}
hr.cell_split{color:#FFFF00;}
img {border:0px;border-style:inset;border-color:black}
UL {margin-left:20px;margin-bottom:0in;margin-top:0in;}
LI {margin:1px 1px 1px 1px}
LI.large {margin:1px 1px 1px 1px;font-size:16pt}
body{margin-left:30px;margin-top:0px;font-size:10pt;font-family:Verdana}
p{font-family:verdana;font-size:10pt}
p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em}
table{border-color:#CCCCCC;border-collapse:collapse;}
tr.alt{background-color:#EEEEEE;}
td.debt{ color:red; }
td{font-family:verdana;font-size:8pt;border:1px solid #CCCCCC;padding:3px 4px 3px 6px;}
td.small{font-family:verdana;font-size:6pt}
td.menu{font-family:verdana;font-size:7pt}
p.title{font-family:verdana;font-size:12pt;font-weight:bold}
p.large{font-family:verdana;font-size:22pt}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
#menud table{border:none;border-color:#000000;width:150;border-collapse:collapse;background-color:#CCCCCC}
#menud td.menuon {background-color:#66FF00;color:#000000;border:1pt solid #000000;text-align:right}
#menud td.menuoff {background-color:#0033FF;color:#FFFFFF;border:1pt solid #000000;text-align:right}
#menud tr.space{height:15px}
#menud td.space{Border-top:0px;Border-bottom: 0px solid;Border-right:1pt solid #000000;Border-left:1pt solid #000000}
#menud tr{height:20px}
#menud p{font-family:Verdana;font-size:10pt;font-weight:bold;margin-left:5px;margin-right:5px}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
div.scroll{overflow:auto;text-align:left;min-width:450px;max-width:600px;max-height:200px; }
textarea.descriptionLED {height:250px; }
@media screen and (max-width: 1100px) {
body{ zoom:2.5;}
}
Css



0
01/22/2025
Css Files Linking To A Style Sheet
link head


ad this to the head of your web page. make sure your sheet has the same .css name
Css



1820
02/22/2024
Css Form Style Various Forms Of Input
input type
Text Boxes
Css



4
09/09/2023
Css Formatting Hyperlink
hyperlink decoration color A
Css



1640
09/09/2023
Css Formatting Bullets And Numbering
bullets li ul ol
Css



2134
09/09/2023
Css Formatting Customizing Formats For Mircrosoft IE ONLY
!ie IE firefox browser css
Css



1276
09/09/2023
Css Formatting ??????Keeping Place Holders
placeholder



Persistent background text

Css



0
01/07/2026
Css Formatting Background Changes
background css fixed url background-
Css



1621
09/09/2023
Css Formatting Scrolling In A Table Table Cell
td scrolling table cell
Css



1545
09/09/2023
Css Formatting Table Formatting
table tr td
Css



2013
09/09/2023
Css Formatting Fieldsets And Legends
border box fieldset legend
Web
Css



1447
09/09/2023
Css Formatting Centering A Table
center table
Css



1744
09/09/2023
Css Formatting Use Div To Place Data In Different Columns
div format table float
Css



1342
09/09/2023
Css Formatting Multiple Menu Color Changes
wordpress menu color changes css
Css



666
09/09/2023
Css Formatting Setting The Font Weight
font weight bold
ValueDescriptionPlay it
normalDefines normal characters. This is defaultPlay it »
boldDefines thick charactersPlay it »
bolderDefines thicker charactersPlay it »
lighterDefines lighter charactersPlay it »
100
200
300
400
500
600
700
800
900
Defines from thin to thick characters. 400 is the same as normal, and 700 is the same as boldPlay it »
initialSets this property to its default value. Read about initialPlay it »
inheritInherits this property from its parent element. Read about inherit
Css



845
09/09/2023
Css Formatting Float Divs Next To Each Other
float left div box frame border
Boxes
Css



10
09/09/2023
Css Formatting Creating And Styling Borders
border property color size
Web
Css



3
09/09/2023
Css Formatting Create A Scrolling Div
scroll bars
Divs





Resources
Hebrew/Greek
Your Content

Luke 2
New International Version
The Birth of Jesus

2 In those days Caesar Augustus issued a decree that a census should be taken of the entire Roman world. 2 (This was the first census that took place while[a] Quirinius was governor of Syria.) 3 And everyone went to their own town to register.

4 So Joseph also went up from the town of Nazareth in Galilee to Judea, to Bethlehem the town of David, because he belonged to the house and line of David. 5 He went there to register with Mary, who was pledged to be married to him and was expecting a child. 6 While they were there, the time came for the baby to be born, 7 and she gave birth to her firstborn, a son. She wrapped him in cloths and placed him in a manger, because there was no guest room available for them.

8 And there were shepherds living out in the fields nearby, keeping watch over their flocks at night. 9 An angel of the Lord appeared to them, and the glory of the Lord shone around them, and they were terrified. 10 But the angel said to them, “Do not be afraid. I bring you good news that will cause great joy for all the people. 11 Today in the town of David a Savior has been born to you; he is the Messiah, the Lord. 12 This will be a sign to you: You will find a baby wrapped in cloths and lying in a manger.”

13 Suddenly a great company of the heavenly host appeared with the angel, praising God and saying,

14
“Glory to God in the highest heaven,
and on earth peace to those on whom his favor rests.”

15 When the angels had left them and gone into heaven, the shepherds said to one another, “Let’s go to Bethlehem and see this thing that has happened, which the Lord has told us about.”

16 So they hurried off and found Mary and Joseph, and the baby, who was lying in the manger. 17 When they had seen him, they spread the word concerning what had been told them about this child, 18 and all who heard it were amazed at what the shepherds said to them. 19 But Mary treasured up all these things and pondered them in her heart. 20 The shepherds returned, glorifying and praising God for all the things they had heard and seen, which were just as they had been told.

21 On the eighth day, when it was time to circumcise the child, he was named Jesus, the name the angel had given him before he was conceived.
Jesus Presented in the Temple

22 When the time came for the purification rites required by the Law of Moses, Joseph and Mary took him to Jerusalem to present him to the Lord 23 (as it is written in the Law of the Lord, “Every firstborn male is to be consecrated to the Lord”[b]), 24 and to offer a sacrifice in keeping with what is said in the Law of the Lord: “a pair of doves or two young pigeons.”[c]

25 Now there was a man in Jerusalem called Simeon, who was righteous and devout. He was waiting for the consolation of Israel, and the Holy Spirit was on him. 26 It had been revealed to him by the Holy Spirit that he would not die before he had seen the Lord’s Messiah. 27 Moved by the Spirit, he went into the temple courts. When the parents brought in the child Jesus to do for him what the custom of the Law required, 28 Simeon took him in his arms and praised God, saying:

29
“Sovereign Lord, as you have promised,
you may now dismiss[d] your servant in peace.
30
For my eyes have seen your salvation,
31
which you have prepared in the sight of all nations:
32
a light for revelation to the Gentiles,
and the glory of your people Israel.”

33 The child’s father and mother marveled at what was said about him. 34 Then Simeon blessed them and said to Mary, his mother: “This child is destined to cause the falling and rising of many in Israel, and to be a sign that will be spoken against, 35 so that the thoughts of many hearts will be revealed. And a sword will pierce your own soul too.”

36 There was also a prophet, Anna, the daughter of Penuel, of the tribe of Asher. She was very old; she had lived with her husband seven years after her marriage, 37 and then was a widow until she was eighty-four.[e] She never left the temple but worshiped night and day, fasting and praying. 38 Coming up to them at that very moment, she gave thanks to God and spoke about the child to all who were looking forward to the redemption of Jerusalem.

39 When Joseph and Mary had done everything required by the Law of the Lord, they returned to Galilee to their own town of Nazareth. 40 And the child grew and became strong; he was filled with wisdom, and the grace of God was on him.
The Boy Jesus at the Temple

41 Every year Jesus’ parents went to Jerusalem for the Festival of the Passover. 42 When he was twelve years old, they went up to the festival, according to the custom. 43 After the festival was over, while his parents were returning home, the boy Jesus stayed behind in Jerusalem, but they were unaware of it. 44 Thinking he was in their company, they traveled on for a day. Then they began looking for him among their relatives and friends. 45 When they did not find him, they went back to Jerusalem to look for him. 46 After three days they found him in the temple courts, sitting among the teachers, listening to them and asking them questions. 47 Everyone who heard him was amazed at his understanding and his answers. 48 When his parents saw him, they were astonished. His mother said to him, “Son, why have you treated us like this? Your father and I have been anxiously searching for you.”

49 “Why were you searching for me?” he asked. “Didn’t you know I had to be in my Father’s house?”[f] 50 But they did not understand what he was saying to them.

51 Then he went down to Nazareth with them and was obedient to them. But his mother treasured all these things in her heart. 52 And Jesus grew in wisdom and stature, and in favor with God and man.

Css



3
09/09/2023
Css Formatting Set Font Color
font color
Css



2
09/09/2023
Css Formatting Force Long Text And Urls To Wrap On All Browser
break url cell
Css



2
09/09/2023
Css Formatting @media
media screen
Developer CSS
In CSS, @media screen is a component of media queries, which are a powerful feature enabling responsive web design. It allows the application of specific CSS styles based on the characteristics of the device displaying the content, specifically targeting screen-based devices like computer monitors, laptops, smartphones, and tablets.
Here's how it works:

@media Rule:
The @media at-rule introduces a media query block. This rule conditionally applies CSS styles based on the result of the media query.
screen Media Type:
The screen keyword within the @media rule specifies that the enclosed styles should only apply when the content is being displayed on a screen. This distinguishes it from other media types like print (for printed output) or speech (for screen readers).
Conditions (Media Features):
Following the screen media type, you can add conditions or "media features" enclosed in parentheses. These conditions specify characteristics of the device or viewport that must be met for the styles to apply. Common media features include:
min-width: Applies styles when the viewport width is equal to or greater than the specified value.
max-width: Applies styles when the viewport width is equal to or less than the specified value.
orientation: Checks if the device is in portrait or landscape mode.

min-resolution / max-resolution: Targets devices based on their pixel density.

Logical Operators:
You can combine multiple conditions using logical operators like and, or (represented by a comma ,), and not.

/* Default styles for all screen sizes */
body {
background-color: red;
}

/* Styles applied only when the screen width is 768px or wider */
@media screen and (min-width: 768px) {
body {
background-color: green;
}
}

/* Styles applied only when the screen width is 600px or less */
@media screen and (max-width: 600px) {
body {
background-color: blue;
}
}

In this example:

The body will have a red background by default.
If the screen width is 768px or more, the background will turn green.
If the screen width is 600px or less, the background will turn blue.

By using @media screen with various media features and logical operators, developers can create responsive designs that adapt to different screen sizes and device characteristics, providing an optimized user experience across a wide range of devices.




@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){#branding .logo a img.normal_logo.show_logo,.side_logo a img.normal_logo{display:none}
#branding .logo a img.retina_logo.show_logo,.side_logo a img.retina_logo{display:block}
}@media only screen and (max-device-width:1023px) and (-webkit-min-device-pixel-ratio:2){#branding .logo a img.retina_logo.original_logo{display:block}
#branding .logo a img.original_logo.normal_logo,#branding .logo a img.retina_logo.custom_logo{display:none !important}
}@media only screen and (min-width:1000px){.vc_shape-divider-wrap[data-style="clouds"] .vc_shape-divider{min-width:1700px}
}@media(min-width:1024px){.minimal_layout .wp-block-image{max-width:none;margin-left:-15%;margin-right:-15%}
.clients_carousel.gallery_expanded{overflow:visible}
.clients_carousel.gallery_expanded .owl-stage-outer{overflow:visible}
.clients_carousel.gallery_expanded .owl-stage-outer .owl-stage{height:100%}
}@media(min-width:1030px){.clients_carousel.gallery_expanded[data-items-margin=yes] .owl-item div{padding-right:50px}
}@media screen and (min-width:1170px){.flat_images figure.modern_portfolio_layout.cols-2{width:47%}
}@media screen and (max-width:1024px){.mobile-panel-open{overflow:hidden}
.mobile_view{display:inherit;visibility:visible}
.desktop_view{display:none;visibility:hidden}
#branding .logo a img.original_logo.desktop_logo,.side_logo a img.desktop_logo{display:none}
#branding .logo a img.mobile_logo,.side_logo a img.mobile_logo{display:inherit}
#branding .logo a img.custom_logo.normal_logo{display:none}
#branding .logo.mobile_logo_render a img.original_logo,#branding .logo.mobile_logo_render a img.custom_logo{display:none !important}
}@media(max-width:1024px){.wrapper-out .container{max-width:100%}
.creativo-enable-parallax{background-position:center center !important;background-attachment:scroll !important;background-size:cover}
.single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel .owl-stage-outer .owl-item div{padding:0}
.single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel,.single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel .owl-stage-outer{overflow:hidden}
.single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel .owl-stage{height:0}
}@media only screen and (max-width:1024px){.grid-masonry.masonry-cols-5 .posts-grid-item,.grid-masonry.masonry-cols-4 .posts-grid-item,.grid-masonry.masonry-cols-3 .posts-grid-item,.grid-masonry.masonry-cols-2 .posts-grid-item{width:calc(50% - 1rem)}
}@media only screen and (max-width:1023px) and (-webkit-min-device-pixel-ratio:1){#branding .logo a img.original_logo.normal_logo{display:block}
#branding .logo a img.custom_logo.normal_logo,#branding .logo a img.show_logo.custom_logo{display:none}
}@media only screen and (max-width:1000px){.vc_shape-divider-wrap[data-style="clouds"] .vc_shape-divider{min-width:800px}
.vc_shape-divider{height:75%}
.vc_shape-divider-wrap[data-style="clouds"] .vc_shape-divider{height:55%}
}@media(max-width:960px){.cr-recent-posts-container .cr-grid-masonry.masonry-cols-5 .posts-grid-item,.cr-recent-posts-container .cr-grid-masonry.masonry-cols-4 .posts-grid-item,.cr-recent-posts-container .cr-grid-masonry.masonry-cols-3 .posts-grid-item{width:49.9%}
.instagram_footer_wrap ul,.
Css



1
10/13/2025
Css Formatting Wrap Table Text
wrap
Developer
Css



1
11/20/2023
Css Formatting Stored Css For 2017 Theme
2017 footer credits seventeen theme Jesus sell
Jesus Over Gangs
Css



4
03/16/2025
Css Formatting Set Styling For Jesus Loves Humor Website
2013 theme jesus loves humor
Jesusloveshumor
place in the style.css

body {overflow:visible;}
table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt}
textarea{ font-size:8pt; }
hr.cell_split{color:red;}
tr.alt{background-color:#EEEEEE;}
td{font-family:verdana;font-size:8pt;border:1px solid #000000;}
.navletters {margin:0 7px 0 7px; }
td.code_mod {max-width: 600px;}
td.description_mod {min-width:300px;}
td.description_mod div{min-width:275px;}
div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; }
input[type="button"],input[type="submit"]{
background-color: #64c9ea;
border: none;
border-radius: 2px;
box-shadow: none;
color: #fff;
cursor: pointer;
padding: 5px 5px;
min-width:10px;margin:5px;}
input[type="text"],input[type="select"] {font-family:verdana;font-size:10pt;margin:5px;padding: 2px 2px;width:70%}
td.file_mod{width:200px;}
.entry-content {max-width:1200px; }
Css



2
04/16/2025
Css Formatting Using CSS Transform: Scale() / CSS Zoom Property:
zoom enlarge
Enlarge Text
To enlarge a CSS layout on load, various methods can be employed, primarily using CSS properties or a combination of CSS and JavaScript.
1. Using CSS transform: scale():
The transform: scale() property can be applied to a parent element or the body to scale the entire layout. This will visually enlarge the content without changing its actual dimensions in the document flow.
Code

body {
transform: scale(1.2); /* Enlarges the entire body by 20% */
transform-origin: top left; /* Sets the origin for the transformation */
}

2. Using CSS zoom property:
The zoom property offers a similar effect to transform: scale(), but it can affect the page layout and element positioning. It's important to note that zoom is not a standard CSS property and might have inconsistent browser support.
Code

body {
zoom: 1.2; /* Enlarges the entire body by 20% */
}

3. Adjusting width and height with viewport units or percentages:
For a more responsive approach, you can define element sizes using viewport units (vw, vh) or percentages, which will automatically adjust the layout based on the viewport dimensions.
Code

.container {
width: 90vw; /* 90% of viewport width */
height: 80vh; /* 80% of viewport height */
}
Css



0
10/13/2025
Css Formatting CSS Scale Property
scale zoom
Media Screens
The CSS scale property allows you to resize elements by scaling them along the x, y, and z axes. This property is particularly useful for creating responsive designs and animations. The scale property can be defined with one, two, or three values, depending on the dimensions you want to scale.

Syntax and Usage

The syntax for the scale property is as follows:

scale: x-axis y-axis z-axis | initial | inherit;
Copy
x-axis: Defines the scale factor along the x-axis.
y-axis: Defines the scale factor along the y-axis.
z-axis: Defines the scale factor along the z-axis.

initial: Sets the property to its default value.

inherit: Inherits the property from its parent element.

Examples

Scaling uniformly in both x and y directions:

div {
scale: 2;
}
Copy
Scaling differently in x and y directions:

div {
scale: 2 0.5;
}
Copy
Scaling in x, y, and z directions:

div {
scale: 1 1.5 2;
}
Copy
Alternative: CSS Transform Property

An alternative to the scale property is using the CSS transform property with the scale() function. This function allows you to scale elements in 2D or 3D space. For example:

div {
transform: scale(2);
}
Copy
This will achieve the same effect as scale: 2; but is part of the broader transform property.

Important Considerations

Accessibility: Scaling and zooming animations can trigger migraines for some users. It's advisable to provide a control to turn off animations or use the prefers-reduced-motion media feature to disable animations for users who have reduced motion preferences.

Child Elements: The scale property affects all descendant elements, meaning that if you scale a parent element, all its children will be scaled as well.

Layout Flow: Unlike the scale() function in the transform property, the scale property does not cause other elements to reflow around it.

By understanding and utilizing the CSS scale property, you can create dynamic and responsive web designs that enhance user experience. Whether you choose to use the scale property directly or the transform property with the scale() function, both methods offer flexibility and control over element sizing.
Css



0
12/13/2025
Css Language Table-layout
Table size fixed
Css



3
12/23/2023
Css Printing Using Css To Induce Printing
printing page break
Css



1089
03/30/2025
Htacess Files Page Not Found 404
404 page redirect
Htacess



1507
09/09/2023
Htacess Internet Security And Set Php Version
.htaccess php version security
Htacess



0
03/04/2024
Html Files Using An Iframe
iframe frame
Html



3039
09/09/2023
Html Form Using Hyperlinks To Submit A Form
hyperlink submit pass variable
Developer






Find A Local Store


Enter your US zip code below to find all the Legacy Classic Kids retailers in your area.





For Canadian Stores, Click Here


Html



1831
09/09/2023
Html Formatting Restricting Line Breaks
no line breaks
Html



1571
09/09/2023
Html Formatting Remove Table Borders
remove border,
TABLES
Use table style:

Brick Oven Pizza

text
Html



1149
09/09/2023
Html Formatting Creating Page Breaks
print break
Printing
Html



2
09/09/2023
Html Formatting Ascii Table Improved
ascii
Ascii Lookup
DEC OCT HEX BIN Symbol HTML Number HTML Name Description
00000000000000NUL?? Null character
10010100000001SOH? Start of Heading
20020200000010STX? Start of Text
30030300000011ETX? End of Text
40040400000100EOT? End of Transmission
50050500000101ENQ? Enquiry
60060600000110ACK? Acknowledge
70070700000111BEL? Bell, Alert
80100800001000BS? Backspace
90110900001001HT ? Horizontal Tab
100120A00001010LF? Line Feed
110130B00001011VT? Vertical Tabulation
120140C00001100FF ? Form Feed
130150D00001101CR? Carriage Return
140160E00001110SO? Shift Out
150170F00001111SI? Shift In
160201000010000DLE? Data Link Escape
170211100010001DC1? Device Control One (XON)
180221200010010DC2? Device Control Two
190231300010011DC3? Device Control Three (XOFF)
200241400010100DC4? Device Control Four
210251500010101NAK? Negative Acknowledge
220261600010110SYN? Synchronous Idle
230271700010111ETB? End of Transmission Block
240301800011000CAN? Cancel
250311900011001EM? End of medium
260321A00011010SUB? Substitute
270331B00011011ESC? Escape
280341C00011100FS? File Separator
290351D00011101GS? Group Separator
300361E00011110RS? Record Separator
310371F00011111US? Unit Separator


DEC OCT HEX BIN Symbol HTML Number HTML Name Description
320402000100000SP ? Space
330412100100001!!!Exclamation mark
340422200100010"""Double quotes (or speech marks)
350432300100011###Number sign
360442400100100$$$Dollar
370452500100101%%%Per cent sign
380462600100110&&&Ampersand
390472700100111'''Single quote
400502800101000((&lparen;Open parenthesis (or open bracket)
410512900101001))&rparen;Close parenthesis (or close bracket)
420522A00101010***Asterisk
430532B00101011+++Plus
440542C00101100,,,Comma
450552D00101101--? Hyphen-minus
460562E00101110...Period, dot or full stop
470572F00101111///Slash or divide
48060300011000000? Zero
49061310011000111? One
50062320011001022? Two
51063330011001133? Three
52064340011010044? Four
53065350011010155? Five
54066360011011066? Six
55067370011011177? Seven
56070380011100088? Eight
57071390011100199? Nine
580723A00111010:::Colon
590733B00111011;;;Semicolon
600743C00111100<<<Less than (or open angled bracket)
610753D00111101===Equals
620763E00111110>>>Greater than (or close angled bracket)
630773F00111111???Question mark
641004001000000@@@At sign
651014101000001AA? Uppercase A
661024201000010BB? Uppercase B
671034301000011CC? Uppercase C
681044401000100DD? Uppercase D
691054501000101EE? Uppercase E
701064601000110FF? Uppercase F
711074701000111GG? Uppercase G
721104801001000HH? Uppercase H
731114901001001II? Uppercase I
741124A01001010JJ? Uppercase J
751134B01001011KK? Uppercase K
761144C01001100LL? Uppercase L
771154D01001101MM? Uppercase M
781164E01001110NN? Uppercase N
791174F01001111OO? Uppercase O
801205001010000PP? Uppercase P
811215101010001QQ? Uppercase Q
821225201010010RR? Uppercase R
831235301010011SS? Uppercase S
841245401010100TT? Uppercase T
851255501010101UU? Uppercase U
861265601010110VV? Uppercase V
871275701010111WW? Uppercase W
881305801011000XX? Uppercase X
891315901011001YY? Uppercase Y
901325A01011010ZZ? Uppercase Z
911335B01011011[[[Opening bracket
921345C01011100Backslash
931355D01011101]]]Closing bracket
941365E01011110^^^Caret - circumflex
951375F01011111___Underscore
961406001100000```Grave accent
971416101100001aa? Lowercase a
981426201100010bb? Lowercase b
991436301100011cc? Lowercase c
1001446401100100dd? Lowercase d
1011456501100101ee? Lowercase e
1021466601100110ff? Lowercase f
1031476701100111gg? Lowercase g
1041506801101000hh? Lowercase h
1051516901101001ii? Lowercase i
1061526A01101010jj? Lowercase j
1071536B01101011kk? Lowercase k
1081546C01101100ll? Lowercase l
1091556D01101101mm? Lowercase m
1101566E01101110nn? Lowercase n
1111576F01101111oo? Lowercase o
1121607001110000pp? Lowercase p
1131617101110001qq? Lowercase q
1141627201110010rr? Lowercase r
1151637301110011ss? Lowercase s
1161647401110100tt? Lowercase t
1171657501110101uu? Lowercase u
1181667601110110vv? Lowercase v
1191677701110111ww? Lowercase w
1201707801111000xx? Lowercase x
1211717901111001yy? Lowercase y
1221727A01111010zz? Lowercase z
1231737B01111011{{{Opening brace
1241747C01111100|||Vertical bar
1251757D01111101}}}Closing brace
1261767E01111110~~˜Equivalency sign - tilde
1271777F01111111DEL? Delete



DEC OCT HEX BIN Symbol HTML Number HTML Name Description
1282008010000000€€€Euro sign
1292018110000001 Unused
1302028210000010‚‚‚Single low-9 quotation mark
1312038310000011ƒƒƒLatin small letter f with hook
1322048410000100„„„Double low-9 quotation mark
1332058510000101………Horizontal ellipsis
1342068610000110 Dagger
1352078710000111‡‡‡Double dagger
1362108810001000ˆˆˆModifier letter circumflex accent
1372118910001001‰‰‰Per mille sign
1382128A10001010 Latin capital letter S with caron
1392138B10001011‹‹‹Single left-pointing angle quotation
1402148C10001100ŒŒŒLatin capital ligature OE
1412158D10001101 Unused
1422168E10001110ŽŽŽLatin capital letter Z with caron
1432178F10001111 Unused
1442209010010000 Unused
1452219110010001‘‘‘Left single quotation mark
1462229210010010’’’Right single quotation mark
1472239310010011“““Left double quotation mark
1482249410010100”””Right double quotation mark
1492259510010101•••Bullet
1502269610010110–––En dash
1512279710010111———Em dash
1522309810011000˜˜˜Small tilde
1532319910011001™™™Trade mark sign
1542329A10011010šššLatin small letter S with caron
1552339B10011011›››Single right-pointing angle quotation mark
1562349C10011100œœœLatin small ligature oe
1572359D10011101 Unused
1582369E10011110žžžLatin small letter z with caron
1592379F10011111ŸŸŸLatin capital letter Y with diaeresis
160240A010100000NBSP Non-breaking space
161241A110100001¡¡¡Inverted exclamation mark
162242A210100010¢¢¢Cent sign
163243A310100011£££Pound sign
164244A410100100¤¤¤Currency sign
165245A510100101¥¥¥Yen sign
166246A610100110¦¦¦Pipe, broken vertical bar
167247A710100111§§§Section sign
168250A810101000¨¨¨Spacing diaeresis - umlaut
169251A910101001©©©Copyright sign
170252AA10101010ªªªFeminine ordinal indicator
171253AB10101011«««Left double angle quotes
172254AC10101100¬¬¬Negation
173255AD10101101­SHY­­Soft hyphen
174256AE10101110®®®Registered trade mark sign
175257AF10101111¯¯¯Spacing macron - overline
176260B010110000°°°Degree sign
177261B110110001±±±Plus-or-minus sign
178262B210110010²²²Superscript two - squared
179263B310110011³³³Superscript three - cubed
180264B410110100´´´Acute accent - spacing acute
181265B510110101µµµMicro sign
182266B610110110¶¶¶Pilcrow sign - paragraph sign
183267B710110111···Middle dot - Georgian comma
184270B810111000¸¸¸Spacing cedilla
185271B910111001¹¹¹Superscript one
186272BA10111010ºººMasculine ordinal indicator
187273BB10111011»»»Right double angle quotes
188274BC10111100¼¼¼Fraction one quarter
189275BD10111101½½½Fraction one half
190276BE10111110¾¾¾Fraction three quarters
191277BF10111111¿¿¿Inverted question mark
192300C011000000ÀÀÀLatin capital letter A with grave
193301C111000001ÁÁÁLatin capital letter A with acute
194302C211000010ÂÂÂLatin capital letter A with circumflex
195303C311000011ÃÃÃLatin capital letter A with tilde
196304C411000100ÄÄÄLatin capital letter A with diaeresis
197305C511000101ÅÅÅLatin capital letter A with ring above
198306C611000110ÆÆÆLatin capital letter AE
199307C711000111ÇÇÇLatin capital letter C with cedilla
200310C811001000ÈÈÈLatin capital letter E with grave
201311C911001001ÉÉÉLatin capital letter E with acute
202312CA11001010 ÊÊÊLatin capital letter E with circumflex
203313CB11001011ËËËLatin capital letter E with diaeresis
204314CC11001100ÌÌÌLatin capital letter I with grave
205315CD11001101ÍÍÍLatin capital letter I with acute
206316CE11001110ÎÎÎLatin capital letter I with circumflex
207317CF11001111ÏÏÏLatin capital letter I with diaeresis
208320D011010000ÐÐÐLatin capital letter ETH
209321D111010001ÑÑÑLatin capital letter N with tilde
210322D211010010ÒÒÒLatin capital letter O with grave
211323D311010011ÓÓÓLatin capital letter O with acute
212324D411010100ÔÔÔLatin capital letter O with circumflex
213325D511010101ÕÕÕLatin capital letter O with tilde
214326D611010110ÖÖÖLatin capital letter O with diaeresis
215327D711010111×××Multiplication sign
216330D811011000ØØØLatin capital letter O with slash
217331D911011001ÙÙÙLatin capital letter U with grave
218332DA11011010ÚÚÚLatin capital letter U with acute
219333DB11011011ÛÛÛLatin capital letter U with circumflex
220334DC11011100ÜÜÜLatin capital letter U with diaeresis
221335DD11011101ÝÝÝLatin capital letter Y with acute
222336DE11011110ÞÞÞLatin capital letter THORN
223337DF11011111ßßßLatin small letter sharp s - ess-zed
224340E011100000 Latin small letter a with grave
225341E111100001áááLatin small letter a with acute
226342E211100010âââLatin small letter a with circumflex
227343E311100011ãããLatin small letter a with tilde
228344E411100100äääLatin small letter a with diaeresis
229345E511100101åååLatin small letter a with ring above
230346E611100110æææLatin small letter ae
231347E711100111çççLatin small letter c with cedilla
232350E811101000èèèLatin small letter e with grave
233351E911101001éééLatin small letter e with acute
234352EA11101010êêêLatin small letter e with circumflex
235353EB11101011ëëëLatin small letter e with diaeresis
236354EC11101100ìììLatin small letter i with grave
237355ED11101101íííLatin small letter i with acute
238356EE11101110îîîLatin small letter i with circumflex
239357EF11101111ïïïLatin small letter i with diaeresis
240360F011110000ðððLatin small letter eth
241361F111110001ñññLatin small letter n with tilde
242362F211110010òòòLatin small letter o with grave
243363F311110011óóóLatin small letter o with acute
244364F411110100ôôôLatin small letter o with circumflex
245365F511110101õõõLatin small letter o with tilde
246366F611110110öööLatin small letter o with diaeresis
247367F711110111÷÷÷Division sign
248370F811111000øøøLatin small letter o with slash
249371F911111001ùùùLatin small letter u with grave
250372FA11111010úúúLatin small letter u with acute
251373FB11111011ûûûLatin small letter u with circumflex
252374FC11111100üüüLatin small letter u with diaeresis
253375FD11111101ýýýLatin small letter y with acute
254376FE11111110þþþLatin small letter thorn
255377FF11111111ÿÿÿLatin small letter y with diaeresis
Html



1
09/24/2025
Html Keyboard Key Codes
keyboard ascii chr key codes
Html



2158
02/22/2024
Html5 Form Form Attributes
required min max pattern
Html Forms
HTML5 New Form Attributes
HTML5 has several new attributes for
and
.
New attributes for
:
autocomplete
novalidate
New attributes for :

autocomplete
autofocus
form
formaction
formenctype
formmethod
formnovalidate
formtarget
height and width
list
min and max
multiple
pattern (regexp)
placeholder
required
step


/
autocomplete Attribute
The autocomplete attribute specifies whether a form or input field should have autocomplete on or off.
When autocomplete is on, the browser automatically complete values based on values that the user has entered before.
Tip:
It is possible to have autocomplete "on" for the form, and "off" for specific input fields, or vice versa.
Note:
The autocomplete attribute works with
and the following
types: text, search, url, tel, email, password, datepickers, range, and color.
Example
An HTML form with autocomplete on (and off for one input field):
First name:
Last name:
E-mail:

Try it yourself �
Tip:
In some browsers you may need to activate the autocomplete function for this to work.
novalidate Attribute
The novalidate attribute is a boolean attribute.
When present, it specifies that the form-data (input) should not be validated when submitted.
Example
Indicates that the form is not to be validated on submit:
E-mail:

Try it yourself �
autofocus Attribute
The autofocus attribute is a boolean attribute.
When present, it specifies that an
element should automatically get focus when the page loads.
Example
Let the "First name" input field automatically get focus when the page loads:
First name:
Try it yourself �
form Attribute
The form attribute specifies one or more forms an
element belongs to.
Tip:
To refer to more than one form, use a space-separated list of form ids.
Example
An input field located outside the HTML form (but still a part of the form):
First name:

Last name:
Try it yourself �
formaction Attribute
The formaction attribute specifies the URL of a file that will process the input control when the form is submitted.
The formaction attribute overrides the action attribute of the
element.
Note:
The formaction attribute is used with type="submit" and type="image".
Example
An HTML form with two submit buttons, with different actions:
First name:
Last name:
value="Submit as admin">

Try it yourself �
formenctype Attribute
The formenctype attribute specifies how the form-data should be encoded when submitting it to the server (only for forms with method="post")
The formenctype attribute overrides the enctype attribute of the
element.
Note:
The formenctype attribute is used with type="submit" and type="image".
Example
Send form-data that is default encoded (the first submit button), and encoded as "multipart/form-data" (the second submit button):
First name:
value="Submit as Multipart/form-data">

Try it yourself �
formmethod Attribute
The formmethod attribute defines the HTTP method for sending form-data to the action URL.
The formmethod attribute overrides the method attribute of the
element.
Note:
The formmethod attribute can be used with type="submit" and type="image".
Example
The second submit button overrides the HTTP method of the form:
First name:
Last name:
value="Submit using POST">

Try it yourself �
formnovalidate Attribute
The novalidate attribute is a boolean attribute.
When present, it specifies that the
element should not be validated when submitted.
The formnovalidate attribute overrides the novalidate attribute of the
element.
Note:
The formnovalidate attribute can be used with type="submit".
Example
A form with two submit buttons (with and without validation):
E-mail:

Try it yourself �
formtarget Attribute
The formtarget attribute specifies a name or a keyword that indicates where to display the response that is received after submitting the form.
The formtarget attribute overrides the target attribute of the
element.
Note:
The formtarget attribute can be used with type="submit" and type="image".
Example
A form with two submit buttons, with different target windows:
First name:
Last name:
value="Submit to a new window">

Try it yourself �
height and width Attributes
The height and width attributes specify the height and width of an
element.
Note:
The height and width attributes are only used with
.
Tip:
Always specify both the height and width attributes for images. If height and width are set, the space required for the image is reserved when the page is loaded. However, without these attributes, the browser does not know the size of the image, and cannot reserve the appropriate space to it. The effect will be that the page layout will change during loading (while the images load).
Example
Define an image as the submit button, with height and width attributes:

Try it yourself �
list Attribute
The list attribute refers to a
element that contains pre-defined options for an
element.
Example
An
element with pre-defined values in a
:


Try it yourself �
min and max Attributes
The min and max attributes specify the minimum and maximum value for an
element. The
TYPE MUST BE NUMBER NOT TEXT
Note:
The min and max attributes works with the following input types: number, range, date, datetime, datetime-local, month, time and week.
Example
elements with min and max values:
Enter a date before 1980-01-01:
Enter a date after 2000-01-01:
Quantity (between 1 and 5):
Try it yourself �
multiple Attribute
The multiple attribute is a boolean attribute.
When present, it specifies that the user is allowed to enter more than one value in the
element.
Note:
The multiple attribute works with the following input types: email, and file.
Example
A file upload field that accepts multiple values:
Select images:
Try it yourself �
pattern Attribute
The pattern attribute specifies a regular expression that the
element's value is checked against.
Note:
The pattern attribute works with the following input types: text, search, url, tel, email, and password.
Tip:
Use the global
title
attribute to describe the pattern to help the user.
Tip:
Learn more about
regular expressions
in our JavaScript tutorial.
Example
An input field that can contain only three letters (no numbers or special characters):
Country code:
Try it yourself �
placeholder Attribute
The placeholder attribute specifies a short hint that describes the expected value of an input field (e.g. a sample value or a short description of the expected format).
The short hint is displayed in the input field before the user enters a value.
Note:
The placeholder attribute works with the following input types: text, search, url, tel, email, and password.
Example
An input field with a placeholder text:

Try it yourself �
required Attribute
The required attribute is a boolean attribute.
When present, it specifies that an input field must be filled out before submitting the form.
Note:
The required attribute works with the following input types: text, search, url, tel, email, password, date pickers, number, checkbox, radio, and file.
Example
A required input field:
Username:
Try it yourself �
step Attribute
The step attribute specifies the legal number intervals for an
element.
Example: if step="3", legal numbers could be -3, 0, 3, 6, etc.
Tip:
The step attribute can be used together with the max and min attributes to create a range of legal values.
Note:
The step attribute works with the following input types: number, range, date, datetime, datetime-local, month, time and week.
Example
An input field with a specified legal number intervals:

Try it yourself �
HTML5
Tag
Tag
Description
Defines an HTML form for user input
Defines an input control
Html5



1831
09/09/2023

Software Web Design