I'm looking for a / spec source that can tell me which CSS properties can be applied to HTML elements. For example, the css property; "Overflow". I know that I can apply this to div, p, textarea, but what other elements can I apply to this? Is there a spec where I can reference?
See http://www.w3.org/TR/CSS2/ and http://www.w3.org/TR/CSS/ .
For example, regarding your property question, overflowsee:
overflow
http://www.w3.org/TR/CSS2/visufx.html#overflow-clipping , stating:
'overflow' Value: visible | hidden | scroll | auto | inherit Initial: visible Applies to: block-level and replaced elements Inherited: no Percentages: N/A Media: visual
CSS , . , <br> color. , , CSS. " ". , , , .
<br>
color
, " " , . , border-color , border-style - none border-width - 0. ( - , .)
border-color
border-style
none
border-width
0
. : .
CSS HTML; .
, , (, img), . , CSS:
img
strong { display: block; height: 5em; width: 5em; overflow: scroll; }
Source: https://habr.com/ru/post/1702920/More articles:Как изменить курсор для ToolStripButton? - c#How to remove a column from JTable using drag and drop? - javaHow to access SQL Server with Cocoa (Mac OS X)? - sql-serverDo strongly typed datasets set performance? - performanceHow to write CRUD tests for Moq and Linq-to-Sql - unit-testingMinimize visibility in Java - javaHow to use SOAP / WSDL in PHP 4? - soapBluetooth simulation tool - bluetoothBinding Datetime Types in Listview (WPF) - listviewCustomizing XML namespaces using the System.Xml.Linq API - c #All Articles