По какой-то причине я больше не могу просматривать содержимое практически ни на одной из страниц моего веб-сайта. Полосы прокрутки нет, но если я уменьшу масштаб страницы, я смогу просмотреть все, что там должно быть.
В прошлый четверг все работало, сегодня пришел и обнаружил, что не работает должным образом. Я не верю, что за это время что-то изменилось.
Я новичок в программировании, и это было как бы брошено мне на колени... пожалуйста, помилуйте меня.
РЕДАКТИРОВАТЬ: вот ссылка на одну из наших страниц, если это поможет, https://therhic.org/testrequest.php
@import url("https://www.w3schools.com/w3css/4/w3.css");
body {
/*background: linear-gradient(90deg, white, gray);*/
background-color: white;
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
margin: 0;
padding: 0;
text-align: center;
}
fieldset {
border: 0;
}
.title {
font-size: larger;
}
.mySlides {
display: none;
}
.hide {
display: none;
}
#title {
font-size: 200px
}
footer {
text-align: left;
padding: 3px 10px 3px;
background-color: #333;
color: white;
}
.contentBG {
background-color: white;
}
.content {
margin-left: 5%;
overflow: scroll;
background-color: #eee;
width: 90%;
box-shadow: 5px 10px 18px #888888;
}
/* Navbar container */
.navbar {
width: 100%;
overflow: hidden;
background-color: #0C2340;
background-color: rgba(12, 35, 64, 0.5);
font-family: Arial;
}
/* Links inside the navbar */
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Links inside the navbar */
.social a {
float: right;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* The dropdown container */
.dropdown {
float: left;
overflow: hidden;
}
/* Dropdown button */
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
/* Important for vertical align on mobile phones */
margin: 0;
/* Important for vertical align on mobile phones */
transition: 0.4s;
}
/* Add a background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
background-color: rgba(12, 35, 64, 1);
cursor: pointer;
transition: 0.4s;
}
/* Add a background color to navbar links on hover */
.navbar a:active,
.dropdown:active .dropbtn {
background-color: #0C2340;
cursor: pointer;
transition: 0.4s;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
background-color: rgba(249, 249, 249, 0.5);
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
.navbar #active {
background-color: #0C2340;
color: white;
}
.drop {
position: absolute;
}
.accordion {
background-color: #ccc;
color: #444;
cursor: pointer;
padding: 18px;
width: 75%;
margin: 0 auto;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active,
.accordion:hover {
background-color: #0c2340;
color: white;
}
.accordion:after {
content: '\25BC';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\25B3";
}
.panel {
padding: 0 18px;
margin: 0 auto;
background-color: #eee;
max-height: 0;
width: 75%;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
The RHIC
.toc {
margin-right: 10%;
margin-left: 10%;
}
input.tocBox {
padding-left: 15px;
}
.tocText {
font-size: 12px;
text-indent: 20px;
display: inline;
}
Event Request
Full Name*
Email Address*
Phone Number*
Organization*
Department*
Course Name and Number*
I acknowledge that I have read, understand, and agree to abide by the Healthcare Simulation Standards of Best Practice® and the
Healthcare Simulationist Code of
Ethics. I commit to upholding these principles in all simulation-based activities to
ensure integrity, professionalism, and the highest quality of education and patient safety.*
Submit
var myIndex = 0;
function displayQuestion1(answer) {
if (answer == "yes") {
document.getElementById('Question1').style.display = "block";
} else if (answer == "no") {
document.getElementById('Question1').style.display = "none";
document.getElementById('Question2').style.display = "none";
}
}
function displayQuestion2(answer) {
if (answer == "yes") {
document.getElementById('Question2').style.display = "block";
} else if (answer == "no") {
document.getElementById('Question2').style.display = "none";
}
}
function displayQuestion3(answer) {
if (answer == "yes") {
document.getElementById('Question3').style.display = "block";
} else if (answer == "no") {
document.getElementById('Question3').style.display = "none";
}
}
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc.addEventListener("click", function () {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... on-website
Невозможно прокручивать или просматривать содержимое div на веб-сайте. ⇐ Html
Программисты Html
1761676567
Anonymous
По какой-то причине я больше не могу просматривать содержимое практически ни на одной из страниц моего веб-сайта. Полосы прокрутки нет, но если я уменьшу масштаб страницы, я смогу просмотреть все, что там должно быть.
В прошлый четверг все работало, сегодня пришел и обнаружил, что не работает должным образом. Я не верю, что за это время что-то изменилось.
Я новичок в программировании, и это было как бы брошено мне на колени... пожалуйста, помилуйте меня.
РЕДАКТИРОВАТЬ: вот ссылка на одну из наших страниц, если это поможет, https://therhic.org/testrequest.php
@import url("https://www.w3schools.com/w3css/4/w3.css");
body {
/*background: linear-gradient(90deg, white, gray);*/
background-color: white;
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
margin: 0;
padding: 0;
text-align: center;
}
fieldset {
border: 0;
}
.title {
font-size: larger;
}
.mySlides {
display: none;
}
.hide {
display: none;
}
#title {
font-size: 200px
}
footer {
text-align: left;
padding: 3px 10px 3px;
background-color: #333;
color: white;
}
.contentBG {
background-color: white;
}
.content {
margin-left: 5%;
overflow: scroll;
background-color: #eee;
width: 90%;
box-shadow: 5px 10px 18px #888888;
}
/* Navbar container */
.navbar {
width: 100%;
overflow: hidden;
background-color: #0C2340;
background-color: rgba(12, 35, 64, 0.5);
font-family: Arial;
}
/* Links inside the navbar */
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Links inside the navbar */
.social a {
float: right;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* The dropdown container */
.dropdown {
float: left;
overflow: hidden;
}
/* Dropdown button */
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
/* Important for vertical align on mobile phones */
margin: 0;
/* Important for vertical align on mobile phones */
transition: 0.4s;
}
/* Add a background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
background-color: rgba(12, 35, 64, 1);
cursor: pointer;
transition: 0.4s;
}
/* Add a background color to navbar links on hover */
.navbar a:active,
.dropdown:active .dropbtn {
background-color: #0C2340;
cursor: pointer;
transition: 0.4s;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
background-color: rgba(249, 249, 249, 0.5);
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
.navbar #active {
background-color: #0C2340;
color: white;
}
.drop {
position: absolute;
}
.accordion {
background-color: #ccc;
color: #444;
cursor: pointer;
padding: 18px;
width: 75%;
margin: 0 auto;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active,
.accordion:hover {
background-color: #0c2340;
color: white;
}
.accordion:after {
content: '\25BC';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\25B3";
}
.panel {
padding: 0 18px;
margin: 0 auto;
background-color: #eee;
max-height: 0;
width: 75%;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
The RHIC
.toc {
margin-right: 10%;
margin-left: 10%;
}
input.tocBox {
padding-left: 15px;
}
.tocText {
font-size: 12px;
text-indent: 20px;
display: inline;
}
Event Request
Full Name*
Email Address*
Phone Number*
Organization*
Department*
Course Name and Number*
I acknowledge that I have read, understand, and agree to abide by the [url=ssih.org/Code-of-Ethics]Healthcare Simulation Standards of Best Practice®[/url] and the
[url=inacsl.org/healthcare-simulation-standards]Healthcare Simulationist Code of
Ethics[/url]. I commit to upholding these principles in all simulation-based activities to
ensure integrity, professionalism, and the highest quality of education and patient safety.*
Submit
var myIndex = 0;
function displayQuestion1(answer) {
if (answer == "yes") {
document.getElementById('Question1').style.display = "block";
} else if (answer == "no") {
document.getElementById('Question1').style.display = "none";
document.getElementById('Question2').style.display = "none";
}
}
function displayQuestion2(answer) {
if (answer == "yes") {
document.getElementById('Question2').style.display = "block";
} else if (answer == "no") {
document.getElementById('Question2').style.display = "none";
}
}
function displayQuestion3(answer) {
if (answer == "yes") {
document.getElementById('Question3').style.display = "block";
} else if (answer == "no") {
document.getElementById('Question3').style.display = "none";
}
}
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function () {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
Подробнее здесь: [url]https://stackoverflow.com/questions/79803146/unable-to-scroll-or-view-div-contents-on-website[/url]
Ответить
1 сообщение
• Страница 1 из 1
Перейти
- Кемерово-IT
- ↳ Javascript
- ↳ C#
- ↳ JAVA
- ↳ Elasticsearch aggregation
- ↳ Python
- ↳ Php
- ↳ Android
- ↳ Html
- ↳ Jquery
- ↳ C++
- ↳ IOS
- ↳ CSS
- ↳ Excel
- ↳ Linux
- ↳ Apache
- ↳ MySql
- Детский мир
- Для души
- ↳ Музыкальные инструменты даром
- ↳ Печатная продукция даром
- Внешняя красота и здоровье
- ↳ Одежда и обувь для взрослых даром
- ↳ Товары для здоровья
- ↳ Физкультура и спорт
- Техника - даром!
- ↳ Автомобилистам
- ↳ Компьютерная техника
- ↳ Плиты: газовые и электрические
- ↳ Холодильники
- ↳ Стиральные машины
- ↳ Телевизоры
- ↳ Телефоны, смартфоны, плашеты
- ↳ Швейные машинки
- ↳ Прочая электроника и техника
- ↳ Фототехника
- Ремонт и интерьер
- ↳ Стройматериалы, инструмент
- ↳ Мебель и предметы интерьера даром
- ↳ Cантехника
- Другие темы
- ↳ Разное даром
- ↳ Давай меняться!
- ↳ Отдам\возьму за копеечку
- ↳ Работа и подработка в Кемерове
- ↳ Давай с тобой поговорим...
Мобильная версия