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 | ABCDEFGHIJKLMNOPQRSTUVWXYZONPRTOFF codeid operationid title keywords application code languageid show_html show_iframe make_public viewed viewed_date language operation <- Look Inside DataConditions: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 Private Sub Report_Open(Cancel As Integer) Dim dbs As Database Dim rs As Recordset Dim rs2 As Recordset Dim strSQL As String Set dbs = CurrentDb dbs.Execute "DELETE * FROM storage" strSQL = "SELECT * FROM sheet1 WHERE groupid=2" Set rs = dbs.OpenRecordset(strSQL) If Not (rs.EOF And rs.BOF) Then rs.MoveFirst 'get results using rs.Fields() Else Exit Sub End If rs.MoveFirst Do While Not rs.EOF 'ething like rs("SomeFieldName") For j = 1 To rs("number") dbs.Execute " INSERT INTO storage (Name,Address,City,State,Zip) VALUES ( '" + rs("name") + "','" + rs("address") + "','" + rs("city") + "','" + rs("state") + "','" + rs("zip") + "');" Next rs.MoveNext Loop dbs.Close End Sub =================== Option Compare Database Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) End Sub Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) Detail.ForceNewPage = 2 End Sub Private Sub Report_Page() End Sub ACCESS 2022 2 08/02/2025 Browsers Customizing Change The Default Download Location In Firefox download firefox Firefox to change the default download location in Firefox, open the menu (three horizontal lines) in the top-right corner, select Settings, and scroll down to the Downloads section under the General panel. Click "Browse" next to "Save files to" to choose a new folder, or select "Always ask me where to save files". Steps to Change Download Location: Access Settings: Click the menu button (equiv ) in the top right and select Settings.Locate Downloads: Scroll down to the Files and Applications section and find the Downloads option.Change Folder: Click Browse (or "Choose") to select a new folder for downloads.Alternative Option: Select "Always ask me where to save files" to choose a destination every time a download starts. Important Notes: You can set Firefox to save to custom locations, including desktop or specific folders.If you select "Always ask me where to save files," you will be prompted for a location with each download.Changes are saved automatically. 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 Some content here or your menu links 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 input[type=text] {padding:5px; border:2px solid #ccc; -webkit-border-radius: 5px; border-radius: 5px; } input[type=text]:focus {border-color:#333; } input[type=submit] {padding:5px 15px; background:#ccc; border:0 none; cursor:pointer; -webkit-border-radius: 5px; border-radius: 5px; } input[type=checkbox] { /* Double-sized Checkboxes */ -ms-transform: scale(2); /* IE */ -moz-transform: scale(2); /* FF */ -webkit-transform: scale(2); /* Safari and Chrome */ -o-transform: scale(2); /* Opera */ padding: 10px; } -ms-transform: scale(2); -moz-transform: scale(2); -webkit-transform: scale(2); -o-transform: scale(2); padding: 10px; Css 4 09/09/2023 Css Formatting Hyperlink hyperlink decoration color A !NOTE pLACE IN THIS ORDER TO KEEP HOVER WORKING ON VISITED LINKS #steve a:link { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #FFFFFF; text-decoration: underline; text-align: center;} #steve a:visited { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold;color: yellow; text-decoration: underline; text-align: center;} #steve a:hover { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold;color: #000000; text-decoration: underline; text-align: center;} a:link { color: rgb(0, 0, 153) } /* for unvisited links */ a:visited { color: rgb(153, 0, 153) } /* for visited links */ a:active { color: rgb(255, 0, 102) } /* when link is clicked */ a:hover { color: rgb(0, 96, 255) } /* when mouse is over link */ ******** <a href="http://http://www.time.gov/" class="link">Example of class="link" Link</a> (font : 12px Verdana, Geneva, Arial, Helvetica, sans-serif a.link:link {text-decoration : underline; color : #996600 a.link:hover {color : #999999; text-decoration : none a.link:visited {text-decoration: underline; color : #333333 a.link:visited:hover {text-decoration: none; color : #666666) ************************* A:link {Text-decoration:none;color:red} A:visited {Text-decoration:none;color:red} A:hover {Text-decoration:underline;color:olive} A:active {Text-decoration:none;color:gray} UL {margin-left:15px;margin-bottom:0in;margin-top:0in;} LI {margin:1px 1px 1px 1px} <A style="color : blue"> Sometimes you may want to show hypertext links without them being underlined. You can do this by setting the text-decoration property to none, for example: a.plain { text-decoration: none } Which would suppress underlining for a link such as: This is not underlined Print #3, "" Css 1640 09/09/2023 Css Formatting Bullets And Numbering bullets li ul ol 5.6.3 'list-style-type' Value: disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none Initial: disc Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A This property is used to determine the appearance of the list-item marker if 'list-style-image' is 'none' or if the image pointed to by the URL cannot be displayed. OL { list-style-type: decimal } /* 1 2 3 4 5 etc. */ OL { list-style-type: lower-alpha } /* a b c d e etc. */ OL { list-style-type: lower-roman } /* i ii iii iv v etc. */ 5.6.4 'list-style-image' Value: | none Initial: none Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A This property sets the image that will be used as the list-item marker. When the image is available it will replace the marker set with the 'list-style-type' marker. UL { list-style-image: url(http://png.com/ellipse.png) } 5.6.5 'list-style-position' Value: inside | outside Initial: outside Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A The value of 'list-style-position' determines how the list-item marker is drawn with regard to the content. For a formatting example see section 4.1.3. 5.6.6 'list-style' Value: [disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none] || [inside | outside] || [ | none] Initial: not defined for shorthand properties Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A The 'list-style' property is a shorthand notation for setting the three properties 'list-style-type', 'list-style-image' and 'list-style-position' at the same place in the style sheet. UL { list-style: upper-roman inside } UL UL { list-style: circle outside } LI.square { list-style: square } Setting 'list-style' directly on 'LI' elements can have unexpected results. Consider: level 1 level 2 Since the specificity (as defined in the cascading order) is higher for the first rule in the style sheet in the example above, it will override the second rule on all 'LI' elements and only 'lower-alpha' list styles will be used. It is therefore recommended to set 'list-style' only on the list type elements: OL.alpha { list-style: lower-alpha } UL { list-style: disc } In the above example, inheritance will transfer the 'list-style' values from 'OL' and 'UL' elements to 'LI' elements. A URL value can be combined with any other value: UL { list-style: url(http://png.com/ellipse.png) disc } In the example above, the 'disc' will be used when the image is unavailable. Css 2134 09/09/2023 Css Formatting Customizing Formats For Mircrosoft IE ONLY !ie IE firefox browser css I had a table that would format for either FireFox or IE but not both. I used the border-collapse property with "!ie" at the end which IE recognizes but other browswers do Not. Try it with other styling in your css Specify a border collapse for ie #directory table{border-color:#000000; border-collapse:separate; border-collapse:collapse !ie; border-spacing:0px;} #event td{padding:10px 10px 10px 10px;} 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- hand property for: background-color body {background-color: coral;} background-image body { background-image: url("paper.gif"); background-color: #cccccc; } background-position body { background-image: url('w3css.gif'); background-repeat: no-repeat; background-attachment: fixed; background-position: center; } background-size #example1 { background: url(mountain.jpg); background-repeat: no-repeat; background-size: auto; } #example2 { background: url(mountain.jpg); background-repeat: no-repeat; background-size: 300px 100px; } background-repeat body { background-image: url("paper.gif"); background-repeat: repeat-y; } background-origin #example1 { border: 10px dashed black; padding: 25px; background: url(paper.gif); background-repeat: no-repeat; background-origin: content-box; } background-clip Specify how far the background should extend within an element: div { border: 10px dotted black; padding: 15px; background: lightblue; background-clip: padding-box; } background-attachment A background-image that will not scroll with the page (fixed): body { background-image: url("img_tree.gif"); background-repeat: no-repeat; background-attachment: fixed; } How to position a background-image on x-axis: div { background-image: url('w3css.gif'); background-repeat: no-repeat; background-position-x: center; } How to position a background-image on y-axis: div { background-image: url('w3css.gif'); background-repeat: no-repeat; background-position-y: center; } <table> <tr> <th>Value</th> <th>Description</th> <th>CSS</th> </tr> <tr> <td> <i> background-color </i> </td> <td>Specifies the background color to be used</td> <td>body { background-color:yellow; } h1 { background-color:#00ff00; } p { background-color:rgb(255,0,255); } </td> </tr> <tr> <td> <i> background-position</i> </td> <td>Specifies the position of the background images</td> <td>body { background-image:url('smiley.gif'); background-repeat:no-repeat; background-attachment:fixed; background-position:center; } </td> </tr> <tr> <td> <i> background-size</i> </td> <td>Specifies the size of the background images</td> <td> div { background:url(img_flwr.gif); background-size:80px 60px; background-repeat:no-repeat; } </td> </tr> <tr> <td> <i> background-repeat </i> </td> <td>Specifies how to repeat the background images</td> <td>body { background-image:url('paper.gif'); background-repeat:repeat-y; } </td> </tr> <tr> <td> <i> background-origin </i> </td> <td>Specifies the positioning area of the background images</td> <td>div { background-image:url('smiley.gif'); background-repeat:no-repeat; background-position:left; background-origin:content-box; } </td> </tr> <tr> <td> <i> background-clip </i> </td> <td>Specifies the painting area of the background images</td> <td>div { background-color:yellow; background-clip:content-box; } </td> </tr> <tr> <td> <i> background-attachment </i> </td> <td>Specifies whether the background images are fixed or scrolls with the rest of the page</td> <td>body { background-image:url('w3css.gif'); background-repeat:no-repeat; background-attachment:fixed; } </td> </tr> <tr> <td> <i> background-image </i> </td> <td>Specifies ONE or MORE background images to be used</td> <td>body { background-image:url('paper.gif'); background-color:#cccccc; } </td> </tr> </table> body { background-image: url(../images/backg.gif); background-repeat: no-repeat; background-position: top center; background-attachment: fixed } background-color:white;opacity:.5;filter:alpha(opacity=50); // for firefox and IE background-color: transparent; color: orange; Css 1621 09/09/2023 Css Formatting Scrolling In A Table Table Cell td scrolling table cell div.scroll{color: #000000; width: 486px;height: 300px;overflow: auto;scrollbar-face-color: #FF9900; scrollbar-shadow-color: #3D5054;scrollbar-highlight-color: #C3D6DA; scrollbar-3dlight-color: #3D5054;scrollbar-darkshadow-color: #89C; scrollbar-track-color: #E0E0E6;scrollbar-arrow-color: #ffffff;} Css 1545 09/09/2023 Css Formatting Table Formatting table tr td [TABLE] style='border-color:black;border-collapse:collapse;mso-border-alt:solid windowtext .5pt;mso-padding-alt:0in 5.4pt 0in 5.4pt' style="border:5px solid #FF6633" makes outside border only This combined solution worked for me, I wanted equal width columns [TD] td {padding:10px 10px 10px 10px;border:1px solid #CCCCCC;vertical-align:top} border-top:1px solid #61686c; border-left:25px solid #26942F; border-bottom:1px solid #e3e3a1; td {margin:0px;padding:3px;} td{white-space: nowrap; vertical-align: top;text-align:center; background-color:#9595FF} Css 2013 09/09/2023 Css Formatting Fieldsets And Legends border box fieldset legend Web syntax:<fieldset><legend>Mytext</legend></fieldset> fieldset{border:1px solid #000000;padding:10px 10px 10px 10px;text-align:left;margin: 0px 5px 15px 20px; } legend{border:1px solid #000000;padding:2px 2px 2px 2px;text-align:left; } fieldset { display: block; margin-left: 2px; margin-right: 2px; padding-top: 0.35em; padding-bottom: 0.625em; padding-left: 0.75em; padding-right: 0.75em; border: 2px groove (internal value); } Css 1447 09/09/2023 Css Formatting Centering A Table center table The old way to center a table was easy: ... The "align" attribute has been deprecated, however, in favor of CSS (Cascading Style Sheets), and this is a good thing. However, it's not so obvious how to center a table using CSS. The obvious way might appear to use the CSS "text-align: center;" somewhere, maybe like one of these: OR ... OR, if you get really desperate, ... None of these will work. The table itself will be left-aligned, but all the content in the table cells will be centered. Why? Because "text-align" applies to inline content, not to a block-level element like "table". Method 1 To center a table, you need to set the margins, like this: table.center {margin-left:auto; margin-right:auto;} And then do this: ... At this point, Mozilla and Opera will center your table. Internet Explorer 5.5 and up, however, needs you to add this to your CSS as well: body {text-align:center;} Method 2 If you want your table to be a certain percentage width, you can do this: table#table1 {width:70%; margin-left:15%; margin-right:15%;} And then in your HTML/XHTML, you would do this: ... Note that I was using an id to describe the table. You can only use an id once on a page. If you had many tables on a page that you wanted to be the same width and centered, you would do this in your CSS: table.center {width:70%; margin-left:15%; margin-right:15%;} And this in your HTML: ... ... Method 3 If you want your table to be of fixed width, define your CSS like this: div.container {width:98%; margin:1%;} table#table1 {text-align:center; margin-left:auto; margin-right:auto; width:100px;} tr,td {text-align:left;} Set "width:100px" to whatever width you need. "text-align: center" is there for Internet Explorer, which won't work without it. Unfortunately, "text-align: center" will center all the text inside your table cells, but we counter that by setting "tr" and "td" to align left. In your HTML, you would then do this: ... Once again, I'm using an id. If you need to center several tables the same way, use a class instead of an id. Css 1744 09/09/2023 Css Formatting Use Div To Place Data In Different Columns div format table float #main { float:left; width:500px; background:#9c9; } #sidebar { float:right; width:250px; background:#c9c; } Css 1342 09/09/2023 Css Formatting Multiple Menu Color Changes wordpress menu color changes css With the new css dropdown menus it is easier to assign a class to the top ul and use the format like below: ul.menu-widget li a {color: #fff;} This is faster that applying a class to the "a". Just change the ul class for each new menu Css 666 09/09/2023 Css Formatting Setting The Font Weight font weight bold ValueDescriptionPlay itnormalDefines 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 900Defines 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 Float Next To Each Other In this example, the three divs will float next to each other. Div 1 Div 2 Div 3 Advanced box div { width: 300px; border: 15px solid green; padding: 50px; margin: 20px; } Css 10 09/09/2023 Css Formatting Creating And Styling Borders border property color size Web border border-block border-block-color border-block-end-color border-block-end-style border-block-end-width border-block-start-color border-block-start-style border-block-start-width border-block-style border-block-width border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-end-end-radius border-end-start-radius border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-inline border-inline-color border-inline-end-color border-inline-end-style border-inline-end-width border-inline-start-color border-inline-start-style border-inline-start-width border-inline-style border-inline-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-start-end-radius border-start-start-radius border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width Hello, I want to display a box around a div, and I want it's size to adjust to the text width. In Firefox, this code works as I want. In IE6/IE7, the box is as big as possible. I want to make this work for IE6 and IE7 (I actually care less about FF, because it's for an intranet). I tried different values for display and width (which only has one value anyway), but none does what I need. Here's the relevant CSS code: /* Div acting like a box */ div.box { border: solid 1px #CCCCCC; background-color: #f9f9f9; display: table; padding: 4px; margin: 4px 4px 0px 4px; } My DOCTYPE is: ============================================== ***double **** Box properties treat all block-level formatting elements like a virtual 'box'. The height and width of the box is determined by (going from inner-most dimension outward) the height and width of the contained elements (text and/or images) plus heights and widths for space around the element ('padding'), plus the height and widths created by added borders ('border'), along with exterior margin values ('margin') relative to elements exterior to the virtual box. The border properties allow borders to be defined (of course) for any element. These properties give a much wider array of display options for creating line effects around elements than has previously been possible in HTML. If a border is rendered for an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Selector { border: [width] [line-style] [color] } Example Ext/Doc: blockquote { border: medium dashed #ff0000 } In-Line: this is a beautiful blockquote test -------------------------------------------------------------------------------- [border-width] [width] IE | N4B4 Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N4B4 Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N4B4 Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-top [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the top border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-top: [width] [line-style] [color] } Example Ext/Doc: div.out { border-top: 10px outset #ffffff } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-right [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the right border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-right: [width] [line-style] [color] } Example Ext/Doc: em { border-right: thick double yellow } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-bottom [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the bottom border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-bottom: [width] [line-style] [color] } Example Ext/Doc: span { border-bottom: solid green } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-left [IE | N] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Values: NA What Is It? This property controls the properties of the left border of an element. The border is drawn using the included color value. If no color is specified, the value will be taken from the 'color' property. If the property is used on an element with an inherent or assigned 'inline' 'display' property status, the browser may render a border for each line if the element spans more than one line. Usage: Selector { border-left: [width] [line-style] [color] } Example Ext/Doc: strong { border-left: thin groove blue } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N Please see the description of allowed values in the 'border-width' property. [border-style] [line-style] IE | N Please see the explanations of these values in the 'border-style' property. [border-color] [color] IE | N Please see the explanations of these values in the 'border-color' property. -------------------------------------------------------------------------------- border-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This property controls the thickness for one to four border sides. If multiple borders are specified, they are given as a space separated list of width values. Value assignments: 1 value present: All four borders are set to that value. 2 values present: Top and bottom borders receive first value while right and left borders are set to the second value. 3 values present: Top - first value, right&left - second value, bottom - third value. 4 values present: Top, right, bottom and left respectively. Usage: Selector { border-width: [width] } Example Ext/Doc: strong { border-width: thick } In-Line: this is a beautiful test -------------------------------------------------------------------------------- thin | medium | thick explicit IE | N4B3 These values set the weight (thickness) of the line used to draw the borders. The browser will determine what thicknesses these keywords shall hold. 'medium' is the default value. [length] calculated IE | N4B3 This is an explicit or relative size measurement of the thickness of the border. Consult the Units Page for acceptable length unit systems. -------------------------------------------------------------------------------- border-top-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This controls the thickness of the top border. Usage: Selector { border-top-width: [width] } Example Ext/Doc: strong { border-top-width: thin } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N4B3 Please see the description of allowed values in the 'border-width' property. -------------------------------------------------------------------------------- border-right-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This controls the thickness of the right border. Usage: Selector { border-right-width: [width] } Example Ext/Doc: strong { border-right-width: 10px } In-Line: this is a beautiful test -------------------------------------------------------------------------------- [border-width] [width] IE | N4B3 Please see the description of allowed values in the 'border-width' property. -------------------------------------------------------------------------------- border-bottom-width [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: medium What Is It? This controls the thickness of the bottom border. Usage: Selector { border-bottom-width: [width] } Example Ext/Doc: strong { border-bottom-width: medium } In-Line: this is a beautiful test Browser Notes - Netscape 4 Beta 3 Rendering of border properties on single sides (in contrast to using the shorthand 'border-width' property) cuts in to the rendering of adjacent elements. -------------------------------------------------------------------------------- [border-width] [width] IE | N4B3 Please see the description of allowed values in the 'border-width' property. -------------------------------------------------------------------------------- border-style [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: none What Is It? This property controls the type of line used for the border of the current element. It uses from one to four space separated values which are bound to the four borders as illustrated in the "What Is It?" section of the 'border-width' attribute. Usage: Selector { border-style: [line-style] } Example Ext/Doc: strong { border-style: groove } In-Line: this is a beautiful test none explicit IE | N4B3 Default value. No border is rendered, regardless of any 'border-width' present. dotted explicit IE | N A dotted line drawn on top of the background of the element. dashed explicit IE | N A dashed line drawn on top of the background of the element. solid explicit IE | N4B3 A solid line. groove explicit IE | N4B3 A 3-D groove is drawn based upon the [color] value. ridge explicit IE | N4B3 A 3-D ridge is rendered based upon the [color] value. inset explicit IE | N4B3 A 3-D inset is rendered based upon the [color] value. outset explicit IE | N4B3 A 3-D outset is rendered based upon the [color] value. double explicit IE | N4B3 A double line drawn on top of the background of the element. The two lines with the space between adds up to the 'border-width' properties. -------------------------------------------------------------------------------- border-color [IE | N4B3] Applicable Tags: ALL HTML Equivalent: | Inherit From Parent: No Default Value: The value of the 'color' property. What Is It? This property controls the color for one to four border sides. It uses from one to four space separated values which are bound to the four borders as illustrated in the "What Is It?" section of the 'border-width' attribute. If no color is specified, this value will be taken from the 'color' property. Usage: Selector { border-color: [color] } Example Ext/Doc: strong { border-color: blue } In-Line: this is a beautiful test [color] explicit IE | N4B3 This value specifies the color to use in creating the border. Please see the section on Color Units for more details. -------------------------------------------------------------------------------- Value Description none No border. dotted Dotted line drawn over the top of the element. dashed Dashed line drawn over the top of the element. solid Solid line. double Double line drawn over the top of the element; the width of the two lines and the space between them equals the border-width value. groove 3-D groove drawn in colors based upon color. ridge 3-D ridge drawn in colors based upon color. inset 3-D inset drawn in colors based upon color. outset 3-D outset drawn in colors based upon color. border-top-width 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 Text Color The color property is used to set the color of the text. The color is specified by: a color name - like "red" a HEX value - like "#ff0000" an RGB value - like "rgb(255,0,0)" Look at CSS Color Values for a complete list of possible color values. The default text color for a page is defined in the body selector. Example body { color: blue; } h1 { color: green; } Css 2 09/09/2023 Css Formatting Force Long Text And Urls To Wrap On All Browser break url cell CSS to force long text and urls to wrap on all browser Sometimes we need to wrap a long text and url forcefully. Without word wrap our design layout become awkward. So to do proper alignment of text, we need to wrap text. We can force a long or continuous text to wrap in a new line by defining css word-wrap property to break-word. Word-wrap is supported in all browsers like IE 5+, FF 3.5+, and Safari, Opera etc. Cross browser CSS to wrap long text and urls .wordwrap { /* wrap long text and urls */ white-space: pre; /* CSS 2.0 */ white-space: pre-wrap; /* CSS 2.1 */ white-space: pre-line; /* CSS 3.0 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: -moz-pre-wrap; /* Mozilla */ word-wrap: break-word; /* IE 5+ */ word-break:break-all /* Breaks Mid Word */ } TABLE CELL EXAMPLE-FORCES HYPERLINK WITH NO SPACES TO WRAP IN THE CELL td.converted_mod {width:90px;min-width:90px;max-width:90px;overflow:hidden; /* wrap long text and urls */ white-space: pre; /* CSS 2.0 */ white-space: pre-wrap; /* CSS 2.1 */ white-space: pre-line; /* CSS 3.0 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: -moz-pre-wrap; /* Mozilla */ word-wrap: break-word; /* IE 5+ */ } 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 smaller cells use :word-break:break-all; table.reportTable,table.navTable{table-layout:fixed;} td.ID_mod {width:140px;min-width:140px;overflow:hidden; /* wrap long text and urls */ white-space: pre; /* CSS 2.0 */ white-space: pre-wrap; /* CSS 2.1 */ white-space: pre-line; /* CSS 3.0 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: -moz-pre-wrap; /* Mozilla */ word-wrap: break-word; /* IE 5+ */ } td.laboratoryid_mod {width:85px;min-width:55px;overflow:hidden;} td.comment_mod {width:110px;min-width:110px;overflow:hidden;} td.sample_desc_mod {width:110px;min-width:110px;overflow:hidden;} td.process_mod {width:80px;min-width:80px;overflow:hidden;} td.extract_date_mod {width:100px;min-width:100px;overflow:hidden;} td.analysis_date_mod {width:55px;min-width:55px;overflow:hidden;} td.labID_mod {width:100px;min-width:100px;overflow:hidden;} td.analysis_methodid_mod {width:200px;min-width:200px;overflow:hidden;} td.extraction_tech_mod {width:80px;min-width:80px;overflow:hidden;} td.analytical_tech_mod {width:200px;min-width:200px;overflow:hidden;} td.CBDV_mod {width:45px;min-width:45px;overflow:hidden;} td.CBD_A_mod {width:45px;min-width:45px;overflow:hidden;} td.CBG_A_mod {width:45px;min-width:45px;overflow:hidden;} td.CBG_mod {width:45px;min-width:45px;overflow:hidden;} td.CBD_mod {width:45px;min-width:45px;overflow:hidden;} td.THCV_mod {width:45px;min-width:45px;overflow:hidden;} td.CBN_mod {width:45px;min-width:45px;overflow:hidden;} td.CBC_mod {width:45px;min-width:45px;overflow:hidden;} td.D9_THC_mod {width:45px;min-width:45px;overflow:hidden;} td.THC_A_mod {width:45px;min-width:45px;overflow:hidden;} td.D8_THC_mod {width:45px;min-width:45px;overflow:hidden;} td.D109R_THC_mod {width:55px;min-width:55px;overflow:hidden;} td.D109S_THC_mod {width:55px;min-width:55px;overflow:hidden;} td.max_active_THC_mod {width:75px;min-width:75px;overflow:hidden;} td.max_active_CDB_mod {width:55px;min-width:55px;overflow:hidden;} td.total_active_cannabinoids_mod {width:105px;min-width:105px;overflow:hidden;} td.percent_decarb_mod {width:55px;min-width:55px;overflow:hidden;} td.CBD_THC_ratio_mod {width:100px;min-width:100px;overflow:hidden;} td.density_mod {width:85px;min-width:85px;overflow:hidden;} td.converted_mod {width:55px;min-width:55px;overflow:hidden;} td.extension_mod {width:200px;min-width:200px;overflow:hidden;} td.pdf_mod {width:90px;min-width:90px;overflow:hidden;word-break:break-all;} td.counts_mod {width:90px;min-width:90px;overflow:hidden;} td.check_column {min-width:25px;width:26px;} td.button_column{min-width:125px;width:125px;} Css 1 11/20/2023 Css Formatting Stored Css For 2017 Theme 2017 footer credits seventeen theme Jesus sell Jesus Over Gangs footer credits in site-info.php Sell hay .entry-content{ margin: 0 auto; max-width: 1400px;min-width:700px;} 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;padding:5px;} .navletters {margin:0 7px 0 7px; } td.code_mod {max-width: 600px;} td.description_mod {min-width:400px;} 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:250px;} @media screen and (min-width: 48em) { .wrap { max-width: 1300px; } } table.reportTable,table.navTable{table-layout:fixed;} td.product_mod {width:125px;min-width:125px;overflow:hidden;padding:10px;} td.sale_mod {overflow:hidden;padding:10px;} td.units_mod {overflow:hidden;padding:10px;} td.location_farm_mod {width:125px;min-width:125px;overflow:hidden;text-align:center;padding:10px;word-break:break-all;} td.location_shed_mod {width:125px;min-width:125px;overflow:hidden;padding:10px;word-break:break-all;} td.discount_mod {width:125px;min-width:125px;overflow:hidden;padding:10px;} td.analysis_mod {width:80px;min-width:80px;overflow:hidden;padding:10px;text-align:center;} td.still_image_mod {width:80px;min-width:80px;overflow:hidden;padding:10px;} td.movie_mod {width:80px;min-width:80px;overflow:hidden;padding:10px;text-align:center;} td.date_mod {overflow:hidden;padding:10px;} td.invoice_mod {overflow:hidden;padding:10px;text-align:right;} td.check_column {min-width:25px;width:25px;} td.button_column{min-width:125px;width:125px;} admin custom css .entry-content a img, .comment-content a img, .widget a img { -webkit-box-shadow: 0 0 0 0px #fff; box-shadow: 0 0 0 0px #fff; } .entry-content a, .entry-summary a, .comment-content a, .widget a, .site-footer .widget-area a, .posts-navigation a, .widget_authors a strong { -webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1); box-shadow: none;} .single-post:not(.has-sidebar) #primary, .page.page-one-column:not(.twentyseventeen-front-page) #primary, .archive.page-one-column:not(.has-sidebar) .page-header, .archive.page-one-column:not(.has-sidebar) #primary { max-width: 1100px; } Jesus over Gangs Add at the end of style.css .entry-content{ margin: 0 auto; max-width: 1400px;min-width:700px;} 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;padding:5px;} .navletters {margin:0 7px 0 7px; } td.code_mod {max-width: 600px;} td.description_mod {min-width:400px;} 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:250px;} @media screen and (min-width: 48em) { .wrap { max-width: 1300px; } } 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 First Column Second Column Third Column Row 1 Text 1 Row 2 Abcdefg 123 Row 3 Abcdefghijklmnop 123456 Css 3 12/23/2023 Css Printing Using Css To Induce Printing printing page break CSS and Printing By Joe Burns Use these to jump around or read it all... [Page Break] [The Format] [Setting A Specific Page Break] I get a lot of questions asking if there are ways to "force" people's browsers to do certain things. The events most often asked for are to force a browser to bookmark the page, to set user preferences, and this one: How can I force a person's browser to print my page? The short and truthful answer is that you can't. There's no command or tag, to my knowledge, that produces a print when your page loads. There are just too many factors involved. Is the user's printer turned on? Can the Web page fit nicely in the print space set by the viewer? And most importantly: Does the viewer want to print your page? It would cheese me if I logged into your page and all of a sudden my printer was humming. Update! As of 10/99 there is still no way to force a printer to print a page; however, you can initiate a print request. See the tutorial. You can take some control when the user decides he or she does want to print your page. Through the magic of Style Sheets, you can now make a point of indicating where the pages will break during the print process. As of 12/21/98, this CSS2 command is supported only by Internet Explorer browsers version 4 and above. -------------------------------------------------------------------------------- Page Break There are two commands you're worried about here: page-break-after page-break-before You can pretty much pick out what each does. The first sets the printing page break just before the element, the second sets the page break just after. Each command has, in theory anyway, four attributes: always | auto | left | right always tells the browser to break the print page after this element always. auto is the default. You're telling the browser to do what it would do anyway: Page break where the page ends. left is not supported by any browser yet. It is used if your printer will print both sides of a page, like a manuscript. If the page is a left-facing page, use this attribute. right is what you use if it's a right-facing page. -------------------------------------------------------------------------------- The Format Here's what it looks like in your page's <HEAD> tags: <STYLE TYPE="text/css"> H2 {page-break-before: always} </STYLE> That format will produce a print page break before each H2 on the page. Would you like to try it out? This page has four H2 headings. Go ahead and print the page. Each H2 will use a new page and will act as the Header for the printed page. Remember, though, that you have to be using Internet Explorer 4 or better. -------------------------------------------------------------------------------- Setting A Specific Page Break Maybe it's better not to have every H2 break the page. Maybe you'd like a page break at a specific point to keep a particular look. You do that by setting up a class of page breaks. You can set up the class on any HTML command, but I think the best method is to set up the class within a <BR> or <P> command. That way there's some white space where the page can break. Here's a look at the format (this will sit between your <HEAD> tags): <STYLE TYPE="text/css"> P.breakhere {page-break-before: always} </STYLE> This then will be the activator for the page break: <P CLASS="breakhere"> You can set up as many different classes as you'd like as long as you keep following the same format as above. -------------------------------------------------------------------------------- And That's That... This is another one of those commands that I would use if there's a need for it, regardless of the type of browser the viewer is running. Those that understand the command get the effect, and those that don't just get a straight page print. Either way, the user gets a nice print of the page. It's just that in one of the prints, you're able to set a few parameters. Enjoy! Css 1089 03/30/2025 Htacess Files Page Not Found 404 404 page redirect ErrorDocument 404 /template.html the later is the file the invalid page will go to Htacess 1507 09/09/2023 Htacess Internet Security And Set Php Version .htaccess php version security Require all denied Require all denied # php -- BEGIN cPanel-generated handler, do not edit # Set the “ea-php74†package as the default “PHP†programming language. AddHandler application/x-httpd-ea-php74___lsphp .php .php7 .phtml # php -- END cPanel-generated handler, do not edit Htacess 0 03/04/2024 Html Files Using An Iframe iframe frame And these are the properties allowed in the starting iframe tag. You may notice that most of these are extremely similar to normal FRAME coding. src Specified the URL of the document to be displayed in the frame. src="FileName.html" name Specifies the name of the frame for the purpose of linking and targeting. name="MyIframe" width height Specifies the width/height of the iframe space in pixels or percentages. width="200" height="100" align Aligns the iframe to the left, center, or right side of the page. align="center" noresize Kills the visitors ability to resize the iframe borders manually. noresize="noresize" scrolling Indicates the ability of a scrollbar to appear (or not) with a value of yes, no, or auto. scrolling="auto" frameborder Carries a value of 0 or 1 depending if you want a border to appear around the iframe or not. frameborder="1" marginwidth marginheight Specifies the width/height of the margin in pixels. marginwidth="1" marginheight="1" vspace hspace Specifies the verticle/horizontal margin space in pixels. vspace="1" hspace="1" You don't have to use ALL of these properties. Most of the time, you will use the first four : SRC, NAME, WIDTH, and HEIGHT. The space between the opening and closing iframe tags is used just like the NOFRAMES tag in frames and the default text in the TEXTAREA tag. The text you enter within this area will be shown on the webpage IF the visitor's browser does not support the IFRAME tag. The next part is linking. Iframes behave the exact same way as regular frames when it comes to linking. The Iframe has a NAME property assigned to it, the link tags get a TARGET property in them. 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 NOBR - no break Description The NOBR tag ensures that a line of text does not wrap to the next line. This tag is useful for words or phrases that must be kept together on one line. However, note that if the line of text is long, it can extend beyond the margin of the browser window, so the user must use scrollbars to view the text. Syntax .... Attributes No Attributes. tells browser not creeate space but do not break the phrase Html 1571 09/09/2023 Html Formatting Remove Table Borders remove border, TABLES Use table style: text Html 1149 09/09/2023 Html Formatting Creating Page Breaks print break Printing CSS and Printing By Joe Burns Use these to jump around or read it all... [Page Break] [The Format] [Setting A Specific Page Break] I get a lot of questions asking if there are ways to "force" people's browsers to do certain things. The events most often asked for are to force a browser to bookmark the page, to set user preferences, and this one: How can I force a person's browser to print my page? The short and truthful answer is that you can't. There's no command or tag, to my knowledge, that produces a print when your page loads. There are just too many factors involved. Is the user's printer turned on? Can the Web page fit nicely in the print space set by the viewer? And most importantly: Does the viewer want to print your page? It would cheese me if I logged into your page and all of a sudden my printer was humming. Update! As of 10/99 there is still no way to force a printer to print a page; however, you can initiate a print request. See the tutorial. You can take some control when the user decides he or she does want to print your page. Through the magic of Style Sheets, you can now make a point of indicating where the pages will break during the print process. As of 12/21/98, this CSS2 command is supported only by Internet Explorer browsers version 4 and above. -------------------------------------------------------------------------------- Page Break There are two commands you're worried about here: page-break-after page-break-before You can pretty much pick out what each does. The first sets the printing page break just before the element, the second sets the page break just after. Each command has, in theory anyway, four attributes: always | auto | left | right always tells the browser to break the print page after this element always. auto is the default. You're telling the browser to do what it would do anyway: Page break where the page ends. left is not supported by any browser yet. It is used if your printer will print both sides of a page, like a manuscript. If the page is a left-facing page, use this attribute. right is what you use if it's a right-facing page. -------------------------------------------------------------------------------- The Format Here's what it looks like in your page's tags: That format will produce a print page break before each H2 on the page. Would you like to try it out? This page has four H2 headings. Go ahead and print the page. Each H2 will use a new page and will act as the Header for the printed page. Remember, though, that you have to be using Internet Explorer 4 or better. -------------------------------------------------------------------------------- Setting A Specific Page Break Maybe it's better not to have every H2 break the page. Maybe you'd like a page break at a specific point to keep a particular look. You do that by setting up a class of page breaks. You can set up the class on any HTML command, but I think the best method is to set up the class within a or command. That way there's some white space where the page can break. Here's a look at the format (this will sit between your tags): This then will be the activator for the page break: You can set up as many different classes as you'd like as long as you keep following the same format as above. -------------------------------------------------------------------------------- And That's That... This is another one of those commands that I would use if there's a need for it, regardless of the type of browser the viewer is running. Those that understand the command get the effect, and those that don't just get a straight page print. Either way, the user gets a nice print of the page. It's just that in one of the prints, you're able to set a few parameters. 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 character10010100000001SOH? Start of Heading20020200000010STX? Start of Text30030300000011ETX? End of Text40040400000100EOT? End of Transmission50050500000101ENQ? Enquiry60060600000110ACK? Acknowledge70070700000111BEL? Bell, Alert80100800001000BS? Backspace90110900001001HT ? Horizontal Tab100120A00001010LF? Line Feed110130B00001011VT? Vertical Tabulation120140C00001100FF? Form Feed130150D00001101CR? Carriage Return140160E00001110SO? Shift Out150170F00001111SI? Shift In160201000010000DLE? Data Link Escape170211100010001DC1? Device Control One (XON)180221200010010DC2? Device Control Two190231300010011DC3? Device Control Three (XOFF)200241400010100DC4? Device Control Four210251500010101NAK? Negative Acknowledge220261600010110SYN? Synchronous Idle230271700010111ETB? End of Transmission Block240301800011000CAN? Cancel250311900011001EM? End of medium260321A00011010SUB? Substitute270331B00011011ESC? Escape280341C00011100FS? File Separator290351D00011101GS? Group Separator300361E00011110RS? Record Separator310371F00011111US? Unit Separator DEC OCT HEX BIN Symbol HTML Number HTML Name Description 320402000100000SP ? Space330412100100001!!!Exclamation mark340422200100010"""Double quotes (or speech marks)350432300100011###Number sign360442400100100$$$Dollar370452500100101%%%Per cent sign380462600100110&&&Ampersand390472700100111'''Single quote400502800101000((&lparen;Open parenthesis (or open bracket)410512900101001))&rparen;Close parenthesis (or close bracket)420522A00101010***Asterisk430532B00101011+++Plus440542C00101100,,,Comma450552D00101101--? Hyphen-minus460562E00101110...Period, dot or full stop470572F00101111///Slash or divide48060300011000000? Zero49061310011000111? One50062320011001022? Two51063330011001133? Three52064340011010044? Four53065350011010155? Five54066360011011066? Six55067370011011177? Seven56070380011100088? Eight57071390011100199? Nine580723A00111010:::Colon590733B00111011;;;Semicolon600743C00111100<<<Less than (or open angled bracket)610753D00111101===Equals620763E00111110>>>Greater than (or close angled bracket)630773F00111111???Question mark641004001000000@@@At sign651014101000001AA? Uppercase A661024201000010BB? Uppercase B671034301000011CC? Uppercase C681044401000100DD? Uppercase D691054501000101EE? Uppercase E701064601000110FF? Uppercase F711074701000111GG? Uppercase G721104801001000HH? Uppercase H731114901001001II? Uppercase I741124A01001010JJ? Uppercase J751134B01001011KK? Uppercase K761144C01001100LL? Uppercase L771154D01001101MM? Uppercase M781164E01001110NN? Uppercase N791174F01001111OO? Uppercase O801205001010000PP? Uppercase P811215101010001QQ? Uppercase Q821225201010010RR? Uppercase R831235301010011SS? Uppercase S841245401010100TT? Uppercase T851255501010101UU? Uppercase U861265601010110VV? Uppercase V871275701010111WW? Uppercase W881305801011000XX? Uppercase X891315901011001YY? Uppercase Y901325A01011010ZZ? Uppercase Z911335B01011011[[[Opening bracket921345C01011100Backslash931355D01011101]]]Closing bracket941365E01011110^^^Caret - circumflex951375F01011111___Underscore961406001100000```Grave accent971416101100001aa? Lowercase a981426201100010bb? Lowercase b991436301100011cc? Lowercase c1001446401100100dd? Lowercase d1011456501100101ee? Lowercase e1021466601100110ff? Lowercase f1031476701100111gg? Lowercase g1041506801101000hh? Lowercase h1051516901101001ii? Lowercase i1061526A01101010jj? Lowercase j1071536B01101011kk? Lowercase k1081546C01101100ll? Lowercase l1091556D01101101mm? Lowercase m1101566E01101110nn? Lowercase n1111576F01101111oo? Lowercase o1121607001110000pp? Lowercase p1131617101110001qq? Lowercase q1141627201110010rr? Lowercase r1151637301110011ss? Lowercase s1161647401110100tt? Lowercase t1171657501110101uu? Lowercase u1181667601110110vv? Lowercase v1191677701110111ww? Lowercase w1201707801111000xx? Lowercase x1211717901111001yy? Lowercase y1221727A01111010zz? Lowercase z1231737B01111011{{{Opening brace1241747C01111100|||Vertical bar1251757D01111101}}}Closing brace1261767E01111110~~˜Equivalency sign - tilde1271777F01111111DEL? Delete DEC OCT HEX BIN Symbol HTML Number HTML Name Description 1282008010000000€€€Euro sign1292018110000001 Unused1302028210000010‚‚‚Single low-9 quotation mark1312038310000011ƒƒƒLatin small letter f with hook1322048410000100„„„Double low-9 quotation mark1332058510000101………Horizontal ellipsis1342068610000110 Dagger1352078710000111‡‡‡Double dagger1362108810001000ˆˆˆModifier letter circumflex accent1372118910001001‰‰‰Per mille sign1382128A10001010 Latin capital letter S with caron1392138B10001011‹‹‹Single left-pointing angle quotation1402148C10001100ŒŒŒLatin capital ligature OE1412158D10001101 Unused1422168E10001110ŽŽŽLatin capital letter Z with caron1432178F10001111 Unused1442209010010000 Unused1452219110010001‘‘‘Left single quotation mark1462229210010010’’’Right single quotation mark1472239310010011“““Left double quotation mark1482249410010100”””Right double quotation mark1492259510010101•••Bullet1502269610010110–––En dash1512279710010111———Em dash1522309810011000˜˜˜Small tilde1532319910011001™™™Trade mark sign1542329A10011010šššLatin small letter S with caron1552339B10011011›››Single right-pointing angle quotation mark1562349C10011100œœœLatin small ligature oe1572359D10011101 Unused1582369E10011110žžžLatin small letter z with caron1592379F10011111ŸŸŸLatin capital letter Y with diaeresis160240A010100000NBSP Non-breaking space161241A110100001¡¡¡Inverted exclamation mark162242A210100010¢¢¢Cent sign163243A310100011£££Pound sign164244A410100100¤¤¤Currency sign165245A510100101¥¥¥Yen sign166246A610100110¦¦¦Pipe, broken vertical bar167247A710100111§§§Section sign168250A810101000¨¨¨Spacing diaeresis - umlaut169251A910101001©©©Copyright sign170252AA10101010ªªªFeminine ordinal indicator171253AB10101011«««Left double angle quotes172254AC10101100¬¬¬Negation173255AD10101101SHYSoft hyphen174256AE10101110®®®Registered trade mark sign175257AF10101111¯¯¯Spacing macron - overline176260B010110000°°°Degree sign177261B110110001±±±Plus-or-minus sign178262B210110010²²²Superscript two - squared179263B310110011³³³Superscript three - cubed180264B410110100´´´Acute accent - spacing acute181265B510110101µµµMicro sign182266B610110110¶¶¶Pilcrow sign - paragraph sign183267B710110111···Middle dot - Georgian comma184270B810111000¸¸¸Spacing cedilla185271B910111001¹¹¹Superscript one186272BA10111010ºººMasculine ordinal indicator187273BB10111011»»»Right double angle quotes188274BC10111100¼¼¼Fraction one quarter189275BD10111101½½½Fraction one half190276BE10111110¾¾¾Fraction three quarters191277BF10111111¿¿¿Inverted question mark192300C011000000ÀÀÀLatin capital letter A with grave193301C111000001ÁÁÁLatin capital letter A with acute194302C211000010ÂÂÂLatin capital letter A with circumflex195303C311000011ÃÃÃLatin capital letter A with tilde196304C411000100ÄÄÄLatin capital letter A with diaeresis197305C511000101ÅÅÅLatin capital letter A with ring above198306C611000110ÆÆÆLatin capital letter AE199307C711000111ÇÇÇLatin capital letter C with cedilla200310C811001000ÈÈÈLatin capital letter E with grave201311C911001001ÉÉÉLatin capital letter E with acute202312CA11001010 ÊÊÊLatin capital letter E with circumflex203313CB11001011ËËËLatin capital letter E with diaeresis204314CC11001100ÌÌÌLatin capital letter I with grave205315CD11001101ÍÍÍLatin capital letter I with acute206316CE11001110ÎÎÎLatin capital letter I with circumflex207317CF11001111ÏÏÏLatin capital letter I with diaeresis208320D011010000ÐÐÐLatin capital letter ETH209321D111010001ÑÑÑLatin capital letter N with tilde210322D211010010ÒÒÒLatin capital letter O with grave211323D311010011ÓÓÓLatin capital letter O with acute212324D411010100ÔÔÔLatin capital letter O with circumflex213325D511010101ÕÕÕLatin capital letter O with tilde214326D611010110ÖÖÖLatin capital letter O with diaeresis215327D711010111×××Multiplication sign216330D811011000ØØØLatin capital letter O with slash217331D911011001ÙÙÙLatin capital letter U with grave218332DA11011010ÚÚÚLatin capital letter U with acute219333DB11011011ÛÛÛLatin capital letter U with circumflex220334DC11011100ÜÜÜLatin capital letter U with diaeresis221335DD11011101ÝÝÝLatin capital letter Y with acute222336DE11011110ÞÞÞLatin capital letter THORN223337DF11011111ßßßLatin small letter sharp s - ess-zed224340E011100000 Latin small letter a with grave225341E111100001áááLatin small letter a with acute226342E211100010âââLatin small letter a with circumflex227343E311100011ãããLatin small letter a with tilde228344E411100100äääLatin small letter a with diaeresis229345E511100101åååLatin small letter a with ring above230346E611100110æææLatin small letter ae231347E711100111çççLatin small letter c with cedilla232350E811101000èèèLatin small letter e with grave233351E911101001éééLatin small letter e with acute234352EA11101010êêêLatin small letter e with circumflex235353EB11101011ëëëLatin small letter e with diaeresis236354EC11101100ìììLatin small letter i with grave237355ED11101101íííLatin small letter i with acute238356EE11101110îîîLatin small letter i with circumflex239357EF11101111ïïïLatin small letter i with diaeresis240360F011110000ðððLatin small letter eth241361F111110001ñññLatin small letter n with tilde242362F211110010òòòLatin small letter o with grave243363F311110011óóóLatin small letter o with acute244364F411110100ôôôLatin small letter o with circumflex245365F511110101õõõLatin small letter o with tilde246366F611110110öööLatin small letter o with diaeresis247367F711110111÷÷÷Division sign248370F811111000øøøLatin small letter o with slash249371F911111001ùùùLatin small letter u with grave250372FA11111010úúúLatin small letter u with acute251373FB11111011ûûûLatin small letter u with circumflex252374FC11111100üüüLatin small letter u with diaeresis253375FD11111101ýýýLatin small letter y with acute254376FE11111110þþþLatin small letter thorn255377FF11111111ÿÿÿLatin small letter y with diaeresis Html 1 09/24/2025 Html Keyboard Key Codes keyboard ascii chr key codes $newstring=substr($teaser,25,1);$acii=ord($newstring); echo "$newstring=======$ascii"; The 160 is a space problem for browsers Code Entity Hex Character Description ------ -------------- --- --------- ----------------------------------- %00 Unused %01 Unused %02 Unused %03 Unused %04 Unused %05 Unused %06 Unused %07 Unused %08 Unused %09 Horizontal tab %0A Line feed %0B Unused %0C Unused %0D Carriage return %0E Unused %0F Unused %10 Unused %11 Unused %12 Unused %13 Unused %14 Unused %15 Unused %16 Unused %17 Unused %18 Unused %19 Unused %1A Unused %1B Unused %1C Unused %1D Unused %1E Unused %1F Unused %20 Space ! %21 ! Exclamation mark " " %22 " Quotation mark # %23 # Number sign $ %24 $ Dollar sign % %25 % Percent sign & & %26 & Ampersand ' %27 ' Apostrophe ( %28 ( Left parenthesis ) %29 ) Right parenthesis * %2A * Asterisk + %2B + Plus sign , %2C , Comma - %2D - Hyphen . %2E . Period (fullstop) / %2F / Solidus (slash) 0 %30 0 0 1 %31 1 1 2 %32 2 2 3 %33 3 3 4 %34 4 4 5 %35 5 5 6 %36 6 6 7 %37 7 7 8 %38 8 8 9 %39 9 9 : %3A : Colon ; %3B ; Semi-colon < < %3C < Less than = %3D = Equals sign > > %3E > Greater than ? %3F ? Question mark @ %40 @ Commercial at A %41 A A B %42 B B C %43 C C D %44 D D E %45 E E F %46 F F G %47 G G H %48 H H I %49 I I J %4A J J K %4B K K L %4C L L M %4D M M N %4E N N O %4F O O P %50 P P Q %51 Q Q R %52 R R S %53 S S T %54 T T U %55 U U V %56 V V W %57 W W X %58 X X Y %59 Y Y Z %5A Z Z [ %5B [ Left square bracket \ %5C \ Reverse solidus (backslash) ] %5D ] Right square bracket ^ %5E ^ Caret _ %5F _ Horizontal bar (underscore) ` %60 ` Acute accent a %61 a a b %62 b b c %63 c c d %64 d d e %65 e e f %66 f f g %67 g g h %68 h h i %69 i i j %6A j j k %6B k k l %6C l l m %6D m m n %6E n n o %6F o o p %70 p p q %71 q q r %72 r r s %73 s s t %74 t t u %75 u u v %76 v v w %77 w w x %78 x x y %79 y y z %7A z z { %7B { Left curly brace | %7C | Vertical bar } %7D } Right curly brace ~ %7E ~ Tilde %7F Unused € %80 Unused %81 Unused ‚ %82 Unused ƒ %83 Unused „ %84 Unused … %85 Unused %86 Unused ‡ %87 Unused ˆ %88 Unused ‰ %89 Unused %8A Unused ‹ %8B Unused Œ %8C Unused %8D Unused Ž %8E Unused %8F Unused %90 Unused ‘ %91 Unused ’ %92 Unused “ %93 Unused ” %94 Unused • %95 Unused – %96 Unused — %97 Unused ˜ %98 Unused ™ %99 TM TM TM TM TM š %9A Unused › %9B Unused œ %9C Unused %9D Unused ž %9E Unused Ÿ %9F Unused [3.2] %A0 Non-breaking space ¡ ¡ [3.2] %A1 ¡ Inverted exclamation ¢ ¢ [3.2] %A2 ¢ Cent sign £ £ [3.2] %A3 £ Pound sterling ¤ ¤ [3.2] %A4 ¤ General currency sign ¥ ¥ [3.2] %A5 ¥ Yen sign ¦ ¦ [3.2] %A6 ¦ Broken vertical bar § § [3.2] %A7 § Section sign ¨ ¨ [3.2] %A8 ¨ Umlaut (dieresis) © © [3.2] %A9 © Copyright ª ª [3.2] %AA ª Feminine ordinal « « [3.2] %AB « Left angle quote, guillemotleft ¬ ¬ [3.2] %AC ¬ Not sign [3.2] %AD Soft hyphen ® ® [3.2] %AE ® Registered trademark ¯ ¯ [3.2] %AF ¯ Macron accent ° ° [3.2] %B0 ° Degree sign ± ± [3.2] %B1 ± Plus or minus ² ² [3.2] %B2 ² Superscript two ³ ³ [3.2] %B3 ³ Superscript three ´ ´ [3.2] %B4 ´ Acute accent µ µ [3.2] %B5 µ Micro sign ¶ ¶ [3.2] %B6 ¶ Paragraph sign · · [3.2] %B7 · Middle dot ¸ ¸ [3.2] %B8 ¸ Cedilla ¹ ¹ [3.2] %B9 ¹ Superscript one º º [3.2] %BA º Masculine ordinal » » [3.2] %BB » Right angle quote, guillemotright ¼ ¼ [3.2] %BC ¼ Fraction one-fourth ½ ½ [3.2] %BD ½ Fraction one-half ¾ ¾ [3.2] %BE ¾ Fraction three-fourths ¿ ¿ [3.2] %BF ¿ Inverted question mark À À %C0 À Capital A, grave accent Á Á %C1 Á Capital A, acute accent   %C2  Capital A, circumflex accent à à %C3 à Capital A, tilde Ä Ä %C4 Ä Capital A, dieresis or umlaut mark Å Å %C5 Å Capital A, ring Æ Æ %C6 Æ Capital AE dipthong (ligature) Ç Ç %C7 Ç Capital C, cedilla È È %C8 È Capital E, grave accent É É %C9 É Capital E, acute accent Ê Ê %CA Ê Capital E, circumflex accent Ë Ë %CB Ë Capital E, dieresis or umlaut mark Ì Ì %CC Ì Capital I, grave accent Í Í %CD Í Capital I, acute accent Î Î %CE Î Capital I, circumflex accent Ï Ï %CF Ï Capital I, dieresis or umlaut mark Ð Ð %D0 Ð Capital Eth, Icelandic Ñ Ñ %D1 Ñ Capital N, tilde Ò Ò %D2 Ò Capital O, grave accent Ó Ó %D3 Ó Capital O, acute accent Ô Ô %D4 Ô Capital O, circumflex accent Õ Õ %D5 Õ Capital O, tilde Ö Ö %D6 Ö Capital O, dieresis or umlaut mark × × [3.2] %D7 × Multiply sign Ø Ø %D8 Ø Capital O, slash Ù Ù %D9 Ù Capital U, grave accent Ú Ú %DA Ú Capital U, acute accent Û Û %DB Û Capital U, circumflex accent Ü Ü %DC Ü Capital U, dieresis or umlaut mark Ý Ý %DD Ý Capital Y, acute accent Þ Þ %DE Þ Capital THORN, Icelandic ß ß %DF ß Small sharp s, German (sz ligature) %E0 Small a, grave accent á á %E1 á Small a, acute accent â â %E2 â Small a, circumflex accent ã ã %E3 ã Small a, tilde ä ä %E4 ä Small a, dieresis or umlaut mark å å %E5 å Small a, ring æ æ %E6 æ Small ae dipthong (ligature) ç ç %E7 ç Small c, cedilla è è %E8 è Small e, grave accent é é %E9 é Small e, acute accent ê ê %EA ê Small e, circumflex accent ë ë %EB ë Small e, dieresis or umlaut mark ì ì %EC ì Small i, grave accent í í %ED í Small i, acute accent î î %EE î Small i, circumflex accent ï ï %EF ï Small i, dieresis or umlaut mark ð ð %F0 ð Small eth, Icelandic ñ ñ %F1 ñ Small n, tilde ò ò %F2 ò Small o, grave accent ó ó %F3 ó Small o, acute accent ô ô %F4 ô Small o, circumflex accent õ õ %F5 õ Small o, tilde ö ö %F6 ö Small o, dieresis or umlaut mark ÷ ÷ [3.2] %F7 ÷ Division sign ø ø %F8 ø Small o, slash ù ù %F9 ù Small u, grave accent ú ú %FA ú Small u, acute accent û û %FB û Small u, circumflex accent ü ü %FC ü Small u, dieresis or umlaut mark ý ý %FD ý Small y, acute accent þ þ %FE þ Small thorn, Icelandic ÿ ÿ %FF ÿ Small y, dieresis or umlaut mark 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