Step 78, build a coffee menu. Theres no submit button

body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: sans-serif;
  padding: 20px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

.established {
  font-style: italic;
}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  max-width: 500px;
}

hr {
  height: 2px;
  background-color: brown;
  border-color: brown;
}

.bottom-line {
  margin-top: 25px;
}

h1, h2 {
  font-family: Impact, serif;
}

.item p {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
}

.flavor, .dessert {
  text-align: left;
  width: 75%;
}

.price {
  text-align: right;
  width: 25%
}
footer {
  font-size: 14px;
}

/* FOOTER */

Did you mean to ask a question? It looks like all you did was paste in some CSS code.

If you are using Crome as your browser, there have been others who have had the same problems.

Its possible you might have to download another browser. :frowning:

It shouldn’t be an issue with Chrome specifically. But it is a known bug.

Switching browsers will give you a clear cache, no extensions will be installed, and so on (clean slate). So sometimes it can look like an issue with the browser when in fact it isn’t the browser itself that is the issue.

I would suggest you empty the cache and close/reopen the browser. Then try the challenge step again.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.