I want to remove the padding (few pixels) of the iframe. when we use an iframe on any page and make its height and width 100%, but it left a few pixels from all sides left, right, up and down. How to remove it. Take a look at this URL. http://mindmaker.org.in/frame.php I am removing the scroll bar from this page, but several pixels are not deleted from all directions.
You must reset default <body> indents / fields.
<body>
body { margin: 0; padding: 0; }
Hope this helps
add frameBorder = "0" (capital "B")
<iframe src="http://pragswebsolution.in/onlinetest/orgnisation.php" height="100%" width="100%" frameBorder="0" style="overflow-y: hidden;"></iframe>
Source: https://habr.com/ru/post/1203391/More articles:When can the eloquent laravel save () collection go wrong? - phpWhere to place common functions in express.js? - javascriptCatch "before / after function call" events for all functions of a class - pythonShould we design a theme for Android L Material? - androidRounded corners + background Color Dynamic setting for Android button? - androidLinux Fork: reusing pid - cResharper Converting foreach to LINQ using extension methods - c #Simple types with a higher value (C ++ 11) - c ++Implicit conversion does not work for BOOST_STRONG_TYPEDEF and BOOST_SPIRIT_DEBUG_NODE - c ++How to create a child of an existing super object using JOINED and Hibernate inheritance strategy - javaAll Articles